diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-10-17 21:39:04 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-10-29 09:51:23 +0100 |
commit | f174fbac3cb127273b8f3df8e05d7156ec1d7658 (patch) | |
tree | 4f1e2c9e6634e58430c96f73e735345a0a5f87c1 /libavcodec/bink.c | |
parent | 48f01398ba30d8d921b27558df0029033e2d4402 (diff) | |
download | ffmpeg-f174fbac3cb127273b8f3df8e05d7156ec1d7658.tar.gz |
lavc: add CODEC_CAP_DR1 to all video decoders missing them
Diffstat (limited to 'libavcodec/bink.c')
-rw-r--r-- | libavcodec/bink.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/bink.c b/libavcodec/bink.c index b6c8c4b240..636bb20c3f 100644 --- a/libavcodec/bink.c +++ b/libavcodec/bink.c @@ -1336,4 +1336,5 @@ AVCodec ff_bink_decoder = { .close = decode_end, .decode = decode_frame, .long_name = NULL_IF_CONFIG_SMALL("Bink video"), + .capabilities = CODEC_CAP_DR1, }; |