diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:35:36 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:35:36 +0000 |
commit | 80e8e25ef24eb96333d61a86ee02201abc89f5d9 (patch) | |
tree | b0f300176fb09c8a3845890015ed122f04a36101 | |
parent | f4499c955adbde5d981e31952fb54d4b17cb3602 (diff) | |
download | ffmpeg-80e8e25ef24eb96333d61a86ee02201abc89f5d9.tar.gz |
ptx image decoder uses get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19101 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ptx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ptx.c b/libavcodec/ptx.c index ac3e7116f3..f8bbca718a 100644 --- a/libavcodec/ptx.c +++ b/libavcodec/ptx.c @@ -114,7 +114,7 @@ AVCodec ptx_decoder = { NULL, ptx_end, ptx_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("V.Flash PTX image"), }; |