diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 09:02:14 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 09:02:14 +0000 |
commit | 6d3530ce2b4c68242cea5823bd0a13746f46aa62 (patch) | |
tree | 7834955aac1c5314691415203dc8364fb692818b | |
parent | 35b2c6575685ae6cffd965e4d26b011d9c3f1268 (diff) | |
download | ffmpeg-6d3530ce2b4c68242cea5823bd0a13746f46aa62.tar.gz |
zmbv decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19112 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/zmbv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c index f150a86639..de2eb9c4c6 100644 --- a/libavcodec/zmbv.c +++ b/libavcodec/zmbv.c @@ -664,6 +664,7 @@ AVCodec zmbv_decoder = { NULL, decode_end, decode_frame, + CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Zip Motion Blocks Video"), }; |