diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:48:34 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:48:34 +0000 |
commit | c0bd35c70c23202971117ee71c98511e6edd5a75 (patch) | |
tree | a81d1a663fb6c9a711af1c8affb59244d942b765 | |
parent | fa27733cea39c9117477d77c1f533aacef066844 (diff) | |
download | ffmpeg-c0bd35c70c23202971117ee71c98511e6edd5a75.tar.gz |
renderware txd image decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19110 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/txd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/txd.c b/libavcodec/txd.c index a3cbde5f0b..5065d08f19 100644 --- a/libavcodec/txd.c +++ b/libavcodec/txd.c @@ -163,7 +163,7 @@ AVCodec txd_decoder = { NULL, txd_end, txd_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("Renderware TXD (TeXture Dictionary) image"), }; |