From bd45ca0807bd03d66ba695f0448195fac1313c27a0a570955cc346ab2e508516 Mon Sep 17 00:00:00 2001 From: Manfred Hollstein Date: Thu, 15 Aug 2024 12:02:13 +0200 Subject: [PATCH] ffmpeg-5.changes aktualisiert - Remove ffmpeg-5-CVE-2024-32228.patch as it adds/modifies code which does not build on Packman. --- ffmpeg-5.changes | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/ffmpeg-5.changes b/ffmpeg-5.changes index 1452147..a0419b4 100644 --- a/ffmpeg-5.changes +++ b/ffmpeg-5.changes @@ -1,3 +1,36 @@ +------------------------------------------------------------------- +Thu Aug 15 09:56:01 UTC 2024 - Manfred Hollstein +- Remove ffmpeg-5-CVE-2024-32228.patch as it adds/modifies code + which does not build on Packman. Errors are like + libavcodec/hevcdec.c: In function ‘hevc_frame_start’: + libavcodec/hevcdec.c:3039:33: error: ‘AV_FRAME_FLAG_KEY’ undeclared (first use in this function); did you mean ‘AV_PKT_FLAG_KEY’? + 3039 | s->ref->frame->flags |= AV_FRAME_FLAG_KEY; + | ^~~~~~~~~~~~~~~~~ + | AV_PKT_FLAG_KEY + libavcodec/hevcdec.c:3039:33: note: each undeclared identifier is reported only once for each function it appears in + libavcodec/hevcdec.c:3043:31: error: ‘HEVCSEI’ has no member named ‘common’ + 3043 | s->ref->needs_fg = (s->sei.common.film_grain_characteristics.present || + | ^ + libavcodec/hevcdec.c:3044:31: error: ‘HEVCSEI’ has no member named ‘common’ + 3044 | s->sei.common.aom_film_grain.enable) && + | ^ + libavcodec/hevcdec.c:3053:17: error: ‘HEVCSEI’ has no member named ‘common’ + 3053 | ( s->sei.common.film_grain_characteristics.present && + | ^ + libavcodec/hevcdec.c:3054:12: error: implicit declaration of function ‘ff_h274_film_grain_params_supported’ [-Werror=implicit-function-declaration] + 3054 | !ff_h274_film_grain_params_supported(s->sei.common.film_grain_characteristics.model_id, + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + libavcodec/hevcdec.c:3054:54: error: ‘HEVCSEI’ has no member named ‘common’ + 3054 | !ff_h274_film_grain_params_supported(s->sei.common.film_grain_characteristics.model_id, + | ^ + libavcodec/hevcdec.c:3056:15: error: implicit declaration of function ‘av_film_grain_params_select’; did you mean ‘av_film_grain_params_alloc’? [-Werror=implicit-function-declaration] + 3056 | || !av_film_grain_params_select(s->ref->frame)) { + | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ + | av_film_grain_params_alloc + libavcodec/hevcdec.c:3057:63: error: ‘HEVCContext’ has no member named ‘film_grain_warning_shown’ + 3057 | av_log_once(s->avctx, AV_LOG_WARNING, AV_LOG_DEBUG, &s->film_grain_warning_shown, + | ^~ + ------------------------------------------------------------------- Tue Jul 2 12:26:28 UTC 2024 - Cliff Zhao