1
0
forked from jengelh/ffmpeg-5

ffmpeg-5.changes aktualisiert

This commit is contained in:
Manfred Hollstein 2024-08-15 12:08:10 +02:00
parent bd45ca0807
commit 6af725eab1

View File

@ -1,35 +1,12 @@
-------------------------------------------------------------------
Thu Aug 15 09:56:01 UTC 2024 - Manfred Hollstein <manfred.h@gmx.net>
- 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,
| ^~
which does not build on Packman. Following errors are generated:
* AV_FRAME_FLAG_KEY undeclared
* 'HEVCSEI' has no member named 'common'
* implicit declaration of function 'ff_h274_film_grain_params_supported'
* implicit declaration of function 'av_film_grain_params_select'
* 'HEVCContext' has no member named 'film_grain_warning_shown'
-------------------------------------------------------------------
Tue Jul 2 12:26:28 UTC 2024 - Cliff Zhao <qzhao@suse.com>