1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/h261dec: Set FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM

This decoder sets the AVCodecContext fields even when a frame
is skipped.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-03-19 16:55:22 +01:00
parent 46a2d03b75
commit b29ae29ee7

View File

@ -617,4 +617,5 @@ const FFCodec ff_h261_decoder = {
.close = ff_mpv_decode_close, .close = ff_mpv_decode_close,
.p.capabilities = AV_CODEC_CAP_DR1, .p.capabilities = AV_CODEC_CAP_DR1,
.p.max_lowres = 3, .p.max_lowres = 3,
.caps_internal = FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM,
}; };