diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:29:29 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:29:29 +0000 |
commit | f1cdd863a5d20c91b2bb71ab4d6cbc365f16b0aa (patch) | |
tree | 199739ae14826fb578fb8a130eb8254deccacc2e /libavcodec/pcx.c | |
parent | 5f27348bd3c9da38891487bfe21c2da4840db4e4 (diff) | |
download | ffmpeg-f1cdd863a5d20c91b2bb71ab4d6cbc365f16b0aa.tar.gz |
pcx decoder use get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19098 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pcx.c')
-rw-r--r-- | libavcodec/pcx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pcx.c b/libavcodec/pcx.c index dde01bedf4..43d7a5a028 100644 --- a/libavcodec/pcx.c +++ b/libavcodec/pcx.c @@ -244,7 +244,7 @@ AVCodec pcx_decoder = { NULL, pcx_end, pcx_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("PC Paintbrush PCX image"), }; |