From: Anton Khirnov Date: Sun, 14 Feb 2021 15:12:39 +0000 (+0100) Subject: lavc/lscrdec: drop unapplicable private capabilities X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=087359ad8599da3972e142b4f2b56a858cdef70b;p=ffmpeg lavc/lscrdec: drop unapplicable private capabilities FF_CODEC_CAP_ALLOCATE_PROGRESS makes no sense because the decoder does not support frame threading. FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM makes no sense because the decoder does not handle skip_frame. --- diff --git a/libavcodec/lscrdec.c b/libavcodec/lscrdec.c index 5ad04315348..d5388c22ac3 100644 --- a/libavcodec/lscrdec.c +++ b/libavcodec/lscrdec.c @@ -274,6 +274,5 @@ AVCodec ff_lscr_decoder = { .decode = decode_frame_lscr, .flush = lscr_decode_flush, .capabilities = AV_CODEC_CAP_DR1, - .caps_internal = FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM | FF_CODEC_CAP_INIT_THREADSAFE | - FF_CODEC_CAP_ALLOCATE_PROGRESS, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, };