diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:42:32 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:42:32 +0000 |
commit | 89978e35a215ca46b386cb2ee659859178f26238 (patch) | |
tree | 95a593d3eeb9159cb384c729cfce1a6171d2b21b | |
parent | da04a14889690cbc6d95e90077ee10bb4f4df826 (diff) | |
download | ffmpeg-89978e35a215ca46b386cb2ee659859178f26238.tar.gz |
targa image decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19106 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/targa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/targa.c b/libavcodec/targa.c index 633a6961c1..ba541619bf 100644 --- a/libavcodec/targa.c +++ b/libavcodec/targa.c @@ -251,7 +251,7 @@ AVCodec targa_decoder = { NULL, targa_end, decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("Truevision Targa image"), }; |