Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ffmpeg-6 for openSUSE:Factory checked in at 2025-03-21 20:22:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ffmpeg-6 (Old) and /work/SRC/openSUSE:Factory/.ffmpeg-6.new.2696 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ffmpeg-6" Fri Mar 21 20:22:25 2025 rev:19 rq:1254841 version:6.1.2 Changes: -------- --- /work/SRC/openSUSE:Factory/ffmpeg-6/ffmpeg-6.changes 2025-01-01 23:09:52.977326680 +0100 +++ /work/SRC/openSUSE:Factory/.ffmpeg-6.new.2696/ffmpeg-6.changes 2025-03-21 20:22:40.803403428 +0100 @@ -1,0 +2,6 @@ +Wed Mar 5 09:46:09 UTC 2025 - Jan Engelhardt <[email protected]> + +- Add 0001-avcodec-libsvtav1-unbreak-build-with-latest-svtav1.patch + to build with SVT-AV1 3.0.0. + +------------------------------------------------------------------- New: ---- 0001-avcodec-libsvtav1-unbreak-build-with-latest-svtav1.patch BETA DEBUG BEGIN: New: - Add 0001-avcodec-libsvtav1-unbreak-build-with-latest-svtav1.patch to build with SVT-AV1 3.0.0. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ffmpeg-6.spec ++++++ --- /var/tmp/diff_new_pack.z0nk7w/_old 2025-03-21 20:22:41.791444532 +0100 +++ /var/tmp/diff_new_pack.z0nk7w/_new 2025-03-21 20:22:41.795444699 +0100 @@ -1,7 +1,7 @@ # # spec file for package ffmpeg-6 # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -117,6 +117,7 @@ Patch13: 0001-avfilter-vf_codecview-fix-heap-buffer-overflow.patch Patch14: 0001-libavcodec-arm-mlpdsp_armv5te-fix-label-format-to-wo.patch Patch15: 11013-avcodec-decode-clean-up-if-get_hw_frames_parameters-.patch +Patch16: 0001-avcodec-libsvtav1-unbreak-build-with-latest-svtav1.patch Patch90: ffmpeg-chromium.patch Patch91: ffmpeg-dlopen-openh264.patch Patch92: ffmpeg-CVE-2023-50007.patch ++++++ 0001-avcodec-libsvtav1-unbreak-build-with-latest-svtav1.patch ++++++ >From d1ed5c06e3edc5f2b5f3664c80121fa55b0baa95 Mon Sep 17 00:00:00 2001 From: Gyan Doshi <[email protected]> Date: Sat, 22 Feb 2025 10:38:53 +0530 Subject: [PATCH] avcodec/libsvtav1: unbreak build with latest svtav1 SVT-AV1 made a change in their public API in 988e930c but without a version bump or any other accessible marker, thus breaking ffmpeg build with current versions of SVT-AV1. They have finally bumped versions a month later, so check added. --- libavcodec/libsvtav1.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c index 79b28eb4df..43fe531fde 100644 --- a/libavcodec/libsvtav1.c +++ b/libavcodec/libsvtav1.c @@ -435,7 +435,11 @@ static av_cold int eb_enc_init(AVCodecContext *avctx) svt_enc->eos_flag = EOS_NOT_REACHED; +#if SVT_AV1_CHECK_VERSION(3, 0, 0) + svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, &svt_enc->enc_params); +#else svt_ret = svt_av1_enc_init_handle(&svt_enc->svt_handle, svt_enc, &svt_enc->enc_params); +#endif if (svt_ret != EB_ErrorNone) { return svt_print_error(avctx, svt_ret, "Error initializing encoder handle"); } -- 2.48.1
