1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

set CODEC_CAP_DR1 for vp5 and vp6 decoders

Originally committed as revision 8896 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2007-05-05 15:21:57 +00:00
parent 442fc0e881
commit 75f6cc26ba
2 changed files with 3 additions and 0 deletions

View File

@ -287,4 +287,5 @@ AVCodec vp5_decoder = {
NULL,
vp56_free,
vp56_decode_frame,
CODEC_CAP_DR1,
};

View File

@ -541,6 +541,7 @@ AVCodec vp6_decoder = {
NULL,
vp56_free,
vp56_decode_frame,
CODEC_CAP_DR1,
};
/* flash version, not flipped upside-down */
@ -553,4 +554,5 @@ AVCodec vp6f_decoder = {
NULL,
vp56_free,
vp56_decode_frame,
CODEC_CAP_DR1,
};