From a08e67e70defe4bac86fbab104d06b4032b7a88c Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Fri, 5 Jun 2009 08:46:04 +0000 Subject: [PATCH] tiff image decoder uses get_buffer, set CODEC_CAP_DR1 Originally committed as revision 19108 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/tiff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"), };