GNU bug report logs - #66460
[PATCH] gnu: ffmpeg: add svt-av1 support

Previous Next

Package: guix-patches;

Reported by: Andy Tai <atai <at> atai.org>

Date: Wed, 11 Oct 2023 06:18:01 UTC

Severity: normal

Tags: patch

Merged with 63095, 66331

Done: Andy Tai <atai <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 66460 in the body.
You can then email your comments to 66460 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#66460; Package guix-patches. (Wed, 11 Oct 2023 06:18:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Andy Tai <atai <at> atai.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 11 Oct 2023 06:18:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Andy Tai <atai <at> atai.org>
To: guix-patches <at> gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH] gnu: ffmpeg: add svt-av1 support
Date: Tue, 10 Oct 2023 23:16:43 -0700
* gnu/packages/video.scm (ffmpeg): Add support for svt-av1
[inputs]: Add svt-av1
[arguments] (configure-flags): Add "--enable-libsvtav1"
---
 gnu/packages/video.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index bb6ce0cbf1..a2d9fe054c 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1624,6 +1624,7 @@ (define-public ffmpeg
             soxr
             speex
             srt
+            svt-av1
             twolame
             vidstab
             x265
@@ -1712,6 +1713,7 @@ (define-public ffmpeg
          "--enable-libsoxr"
          "--enable-libspeex"
          "--enable-libsrt"
+         "--enable-libsvtav1"
          "--enable-libtheora"
          "--enable-libtwolame"
          "--enable-libvidstab"

base-commit: f4e8baf3806e79d7111d2943859865ae4ee0b59d
-- 
2.41.0





Merged 63095 66331 66460. Request was from Andy Tai <atai <at> atai.org> to control <at> debbugs.gnu.org. (Wed, 11 Oct 2023 06:21:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#66460; Package guix-patches. (Wed, 11 Oct 2023 14:49:01 GMT) Full text and rfc822 format available.

Message #10 received at 66460 <at> debbugs.gnu.org (full text, mbox):

From: Bruno Victal <mirai <at> makinata.eu>
To: Andy Tai <atai <at> atai.org>
Cc: 66460 <at> debbugs.gnu.org, Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Subject: Re: bug#66460: [PATCH] gnu: ffmpeg: add svt-av1 support
Date: Wed, 11 Oct 2023 15:48:17 +0100
Hi Andy,

Does svt-av1 imply the use of AVX2?
Maxim has observed some breakage in [1] with the use of svt-hevc.


[1]: <https://issues.guix.gnu.org/65668>

-- 
Thanks,
Bruno.




Disconnected #63095 from all other report(s). Request was from Andy Tai <lichengtai <at> gmail.com> to control <at> debbugs.gnu.org. (Wed, 11 Oct 2023 15:25:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#66460; Package guix-patches. (Wed, 11 Oct 2023 15:27:02 GMT) Full text and rfc822 format available.

Message #15 received at 66460 <at> debbugs.gnu.org (full text, mbox):

From: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
To: Bruno Victal <mirai <at> makinata.eu>
Cc: 63095 <at> debbugs.gnu.org, 66460 <at> debbugs.gnu.org, Andy Tai <atai <at> atai.org>
Subject: Re: [bug#66460] [PATCH] gnu: ffmpeg: add svt-av1 support
Date: Wed, 11 Oct 2023 11:26:09 -0400
Hi,

Bruno Victal <mirai <at> makinata.eu> writes:

> Hi Andy,
>
> Does svt-av1 imply the use of AVX2?
> Maxim has observed some breakage in [1] with the use of svt-hevc.

It seems not an issue, reading
<https://gitlab.com/AOMediaCodec/SVT-AV1/-/merge_requests/1917/diffs>.
If there's no AVX2 support, SSE2 will be used, which will be slower but
backward compatible with all x86_64 CPUs made after the year 2000 :-).

-- 
Thanks,
Maxim




Merged 63095 66331 66460. Request was from Andy Tai <atai <at> atai.org> to control <at> debbugs.gnu.org. (Wed, 11 Oct 2023 15:28:02 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#66460; Package guix-patches. (Fri, 20 Oct 2023 07:02:01 GMT) Full text and rfc822 format available.

Message #20 received at 66460 <at> debbugs.gnu.org (full text, mbox):

From: Andy Tai <atai <at> atai.org>
To: 66460 <at> debbugs.gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH v2] gnu: ffmpeg: add svt-av1 support
Date: Fri, 20 Oct 2023 00:00:41 -0700
* gnu/packages/video.scm (ffmpeg): Add support for svt-av1
[inputs]: Add svt-av1
[arguments] (configure-flags): Add "--enable-libsvtav1"
---
 gnu/packages/video.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index bb6ce0cbf1..a2d9fe054c 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1624,6 +1624,7 @@ (define-public ffmpeg
             soxr
             speex
             srt
+            svt-av1
             twolame
             vidstab
             x265
@@ -1712,6 +1713,7 @@ (define-public ffmpeg
          "--enable-libsoxr"
          "--enable-libspeex"
          "--enable-libsrt"
+         "--enable-libsvtav1"
          "--enable-libtheora"
          "--enable-libtwolame"
          "--enable-libvidstab"

base-commit: 68fe73cf39cb9347ecb4c87f466ddf1fd044269c
-- 
2.41.0





bug closed, send any further explanations to 63095 <at> debbugs.gnu.org and Andy Tai <atai <at> atai.org> Request was from Andy Tai <atai <at> gnu.org> to control <at> debbugs.gnu.org. (Fri, 16 Feb 2024 08:03:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 15 Mar 2024 11:24:07 GMT) Full text and rfc822 format available.

bug unarchived. Request was from Vagrant Cascadian <vagrant <at> debian.org> to control <at> debbugs.gnu.org. (Thu, 21 Mar 2024 19:11:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 19 Apr 2024 11:24:16 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 44 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.