diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:44:26 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-06-05 08:44:26 +0000 |
commit | 7f57905d5559b01e8aae575e411356488d76b125 (patch) | |
tree | 7d3e37b540e1f6e3c050e8b7e31cfaa04796a899 | |
parent | 89978e35a215ca46b386cb2ee659859178f26238 (diff) | |
download | ffmpeg-7f57905d5559b01e8aae575e411356488d76b125.tar.gz |
vp3 and theora decoders use get_buffer, set CODEC_CAP_DR1
Originally committed as revision 19107 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/vp3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c index 1646dd9dd4..7612851aa5 100644 --- a/libavcodec/vp3.c +++ b/libavcodec/vp3.c @@ -2335,7 +2335,7 @@ AVCodec theora_decoder = { NULL, vp3_decode_end, vp3_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("Theora"), }; @@ -2350,7 +2350,7 @@ AVCodec vp3_decoder = { NULL, vp3_decode_end, vp3_decode_frame, - 0, + CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("On2 VP3"), }; |