1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

vp3 and theora decoders use get_buffer, set CODEC_CAP_DR1

Originally committed as revision 19107 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2009-06-05 08:44:26 +00:00
parent 89978e35a2
commit 7f57905d55

View File

@ -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"),
};