summaryrefslogtreecommitdiff
path: root/libavcodec/flvdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-12-22 15:29:08 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-01-21 02:30:38 +0100
commitcde007dcd3487314090eb47617a7497c9bb5b46f (patch)
tree1bd8ff3beb78031caa733ed07e591965e58f6648 /libavcodec/flvdec.c
parent5f2b360fc05bbb4f21e1247d1d9af303113d6c25 (diff)
avcodec: Add FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM to most h263 based codecs
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/flvdec.c')
-rw-r--r--libavcodec/flvdec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/flvdec.c b/libavcodec/flvdec.c
index f74ba3f018..f9beb40afa 100644
--- a/libavcodec/flvdec.c
+++ b/libavcodec/flvdec.c
@@ -123,6 +123,7 @@ AVCodec ff_flv_decoder = {
.close = ff_h263_decode_end,
.decode = ff_h263_decode_frame,
.capabilities = AV_CODEC_CAP_DRAW_HORIZ_BAND | AV_CODEC_CAP_DR1,
+ .caps_internal = FF_CODEC_CAP_SKIP_FRAME_FILL_PARAM,
.max_lowres = 3,
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P,
AV_PIX_FMT_NONE },