Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ffmpeg-4 for openSUSE:Factory checked in at 2024-07-30 11:53:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ffmpeg-4 (Old) and /work/SRC/openSUSE:Factory/.ffmpeg-4.new.1882 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ffmpeg-4" Tue Jul 30 11:53:18 2024 rev:68 rq:1189862 version:4.4.4 Changes: -------- --- /work/SRC/openSUSE:Factory/ffmpeg-4/ffmpeg-4.changes 2024-05-09 12:07:34.585227530 +0200 +++ /work/SRC/openSUSE:Factory/.ffmpeg-4.new.1882/ffmpeg-4.changes 2024-07-30 11:53:32.563292910 +0200 @@ -1,0 +2,6 @@ +Fri Jul 26 13:19:42 UTC 2024 - Filip Kastl <filip.kastl@suse.com> + +- Add ffmpeg-c99.patch so that the package conforms to the C99 + standard and builds on i586 with GCC 14. + +------------------------------------------------------------------- New: ---- _scmsync.obsinfo build.specials.obscpio ffmpeg-c99.patch BETA DEBUG BEGIN: New: - Add ffmpeg-c99.patch so that the package conforms to the C99 standard and builds on i586 with GCC 14. BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ffmpeg-4.spec ++++++ --- /var/tmp/diff_new_pack.G2FJ7x/_old 2024-07-30 11:53:34.239360463 +0200 +++ /var/tmp/diff_new_pack.G2FJ7x/_new 2024-07-30 11:53:34.243360625 +0200 @@ -131,6 +131,7 @@ Patch18: ffmpeg-CVE-2023-51793.patch Patch19: 0001-avfilter-af_stereowiden-Check-length.patch Patch20: ffmpeg-CVE-2023-50010.patch +Patch21: ffmpeg-c99.patch BuildRequires: ladspa-devel BuildRequires: libgsm-devel BuildRequires: libmp3lame-devel ++++++ _scmsync.obsinfo ++++++ mtime: 1722057554 commit: d4a851e48e2ef17c1f3c81416ee204973636088059021e1c36a028ddbb7991c7 url: https://src.opensuse.org/jengelh/ffmpeg-4 revision: master ++++++ ffmpeg-c99.patch ++++++ From: Filip Kastl <fkastl@opensuse.org> Date: Fri, 26 Jul 2024 14:39:42 +0000 I based the package patch on this bug report (there's a patch in the comments) https://bugs.gentoo.org/936433 and on these patches https://ffmpeg.org/pipermail/ffmpeg-devel/2023-December/318685.html http://git.videolan.org/?p=ffmpeg.git;a=commitdiff;h=5860a966d2fffbbda1af001... Index: ffmpeg-4.4.4/libavutil/hwcontext_vaapi.c =================================================================== --- ffmpeg-4.4.4.orig/libavutil/hwcontext_vaapi.c +++ ffmpeg-4.4.4/libavutil/hwcontext_vaapi.c @@ -1032,7 +1032,7 @@ static int vaapi_map_from_drm(AVHWFrames uint32_t va_fourcc; int err, i, j, k; - unsigned long buffer_handle; + uintptr_t buffer_handle; VASurfaceAttribExternalBuffers buffer_desc; VASurfaceAttrib attrs[2] = { { Index: ffmpeg-4.4.4/libavutil/hwcontext_vulkan.c =================================================================== --- ffmpeg-4.4.4.orig/libavutil/hwcontext_vulkan.c +++ ffmpeg-4.4.4/libavutil/hwcontext_vulkan.c @@ -862,7 +862,7 @@ static void free_exec_ctx(AVHWFramesCont av_freep(&cmd->queues); av_freep(&cmd->bufs); - cmd->pool = NULL; + cmd->pool = VK_NULL_HANDLE; } static VkCommandBuffer get_buf_exec_ctx(AVHWFramesContext *hwfc, VulkanExecCtx *cmd)