vp3 and theora decoders use get_buffer, set CODEC_CAP_DR1

Originally committed as revision 19107 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Baptiste Coudurier 16 years ago
parent 89978e35a2
commit 7f57905d55
  1. 4
      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"),
};

Loading…
Cancel
Save