diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:12:14 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:12:14 +0000 |
commit | 53e67085b28ea3e86f71417ce0d320491a8f66b6 (patch) | |
tree | 60d35a0d7bb82c5b19b754e741020fa70ed379bc /libavcodec/4xm.c | |
parent | 7bbf3f2ca4a63b76b634177c16bbab88323f256f (diff) | |
download | ffmpeg-53e67085b28ea3e86f71417ce0d320491a8f66b6.tar.gz |
4xm decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19091 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r-- | libavcodec/4xm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index 7aae23a678..9bd026b5a2 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -845,7 +845,7 @@ AVCodec fourxm_decoder = { NULL, decode_end, decode_frame, - /*CODEC_CAP_DR1,*/ + CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("4X Movie"), }; |