diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:08:49 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:08:49 +0000 |
commit | 7bbf3f2ca4a63b76b634177c16bbab88323f256f (patch) | |
tree | 03895491641a8157d887d87914d7a5c3367544ea /libavcodec/indeo3.c | |
parent | 74a841af8bbdec8070f9eaeb7f7b235cd9c8be7e (diff) | |
download | ffmpeg-7bbf3f2ca4a63b76b634177c16bbab88323f256f.tar.gz |
indeo3 decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19090 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/indeo3.c')
-rw-r--r-- | libavcodec/indeo3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/indeo3.c b/libavcodec/indeo3.c index b5a9a4dba7..5851e538e5 100644 --- a/libavcodec/indeo3.c +++ b/libavcodec/indeo3.c @@ -1133,7 +1133,7 @@ AVCodec indeo3_decoder = { NULL, indeo3_decode_end, indeo3_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("Intel Indeo 3"), }; |