From 7f57905d5559b01e8aae575e411356488d76b125 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Fri, 5 Jun 2009 08:44:26 +0000 Subject: [PATCH] vp3 and theora decoders use get_buffer, set CODEC_CAP_DR1 Originally committed as revision 19107 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp3.c | 4 ++-- 1 file 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"), };