From 57b59df6408f66b2ec61bfe9273405cf67b9c89a Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 21 Mar 2026 15:56:54 +0200 Subject: [PATCH] Update package version to 8.1 --- pkg.info | 6 ++--- source-files/unbreak-svt-av1-4-build.patch | 29 ---------------------- source.sh | 1 - 3 files changed, 3 insertions(+), 33 deletions(-) delete mode 100644 source-files/unbreak-svt-av1-4-build.patch diff --git a/pkg.info b/pkg.info index 4282d18..59fc984 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: ffmpeg description: A complete, cross-platform solution to record, convert and stream audio and video -version: 8.0.1 -revision: 6 +version: "8.1" +revision: 1 url: https://ffmpeg.org/ license: GPL3-only maintainers: @@ -57,4 +57,4 @@ downloads: - url: https://ffmpeg.org/releases/ffmpeg-${BPM_PKG_VERSION}.tar.xz extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: 05ee0b03119b45c0bdb4df654b96802e909e0a752f72e4fe3794f487229e5a41 + checksum: b072aed6871998cce9b36e7774033105ca29e33632be5b6347f3206898e0756a diff --git a/source-files/unbreak-svt-av1-4-build.patch b/source-files/unbreak-svt-av1-4-build.patch deleted file mode 100644 index 123b8e8..0000000 --- a/source-files/unbreak-svt-av1-4-build.patch +++ /dev/null @@ -1,29 +0,0 @@ -From a5d4c398b411a00ac09d8fe3b66117222323844c Mon Sep 17 00:00:00 2001 -From: Christopher Degawa -Date: Wed, 21 Jan 2026 00:12:59 -0600 -Subject: [PATCH] avcodec/libsvtav1: rename aq_mode for v4.0.0 - -Signed-off-by: Christopher Degawa -Signed-off-by: James Almer ---- - libavcodec/libsvtav1.c | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c -index 7047b72422..90c61b98a1 100644 ---- a/libavcodec/libsvtav1.c -+++ b/libavcodec/libsvtav1.c -@@ -237,7 +237,11 @@ static int config_enc_params(EbSvtAv1EncConfiguration *param, - } else if (svt_enc->qp > 0) { - param->qp = svt_enc->qp; - param->rate_control_mode = 0; -+#if SVT_AV1_CHECK_VERSION(4, 0, 0) -+ param->aq_mode = 0; -+#else - param->enable_adaptive_quantization = 0; -+#endif - } - - desc = av_pix_fmt_desc_get(avctx->pix_fmt); --- -2.25.1 diff --git a/source.sh b/source.sh index 83f7a5c..1624aed 100644 --- a/source.sh +++ b/source.sh @@ -7,7 +7,6 @@ prepare() { cd "$BPM_SOURCE" patch -Np1 -i "$BPM_WORKDIR"/chromium-fixes.patch - patch -Np1 -i "$BPM_WORKDIR"/unbreak-svt-av1-4-build.patch } # The build function is executed in the source directory