diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-07-06 01:16:40 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2012-07-06 02:19:21 +0000 |
commit | 6936111d663a5de76478d20c6775983cb2ae219d (patch) | |
tree | 12102e0ccb6488b8d7da04f6ea2572ea8bc1b4e4 /libavcodec | |
parent | 894319e010c8db4d47ba0ad830f9677b72d5ece9 (diff) | |
download | ffmpeg-6936111d663a5de76478d20c6775983cb2ae219d.tar.gz |
bmv: add CODEC_CAP_DR1
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/bmv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/bmv.c b/libavcodec/bmv.c index d06ebae7e0..065cbaefdc 100644 --- a/libavcodec/bmv.c +++ b/libavcodec/bmv.c @@ -369,6 +369,7 @@ AVCodec ff_bmv_video_decoder = { .init = decode_init, .close = decode_end, .decode = decode_frame, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Discworld II BMV video"), }; |