diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:46:04 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:46:04 +0000 |
commit | a08e67e70defe4bac86fbab104d06b4032b7a88c (patch) | |
tree | 63da75fe2dc89ae8b734afd003b5ed63c4d77269 /libavcodec/tiff.c | |
parent | 7f57905d5559b01e8aae575e411356488d76b125 (diff) | |
download | ffmpeg-a08e67e70defe4bac86fbab104d06b4032b7a88c.tar.gz |
tiff image decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19108 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/tiff.c')
-rw-r--r-- | libavcodec/tiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index b7f4db3170..720a6cf622 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -542,7 +542,7 @@ AVCodec tiff_decoder = { NULL, tiff_end, decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("TIFF image"), }; |