diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:41:19 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:41:19 +0000 |
commit | da04a14889690cbc6d95e90077ee10bb4f4df826 (patch) | |
tree | c89bed4ff18f5f35c0f3c7b78fdca61ded124159 | |
parent | 2b2b7f41de117b7a2d7ace0d9c42f3e37ebe9f47 (diff) | |
download | ffmpeg-da04a14889690cbc6d95e90077ee10bb4f4df826.tar.gz |
sun rasterfile image decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19105 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/sunrast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sunrast.c b/libavcodec/sunrast.c index 3fe8f6fffb..f5f659604c 100644 --- a/libavcodec/sunrast.c +++ b/libavcodec/sunrast.c @@ -192,7 +192,7 @@ AVCodec sunrast_decoder = { NULL, sunrast_end, sunrast_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("Sun Rasterfile image"), }; |