Browse Source

set CODEC_CAP_DR1 for vp5 and vp6 decoders

Originally committed as revision 8896 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 18 years ago
parent
commit
75f6cc26ba
2 changed files with 3 additions and 0 deletions
  1. +1
    -0
      libavcodec/vp5.c
  2. +2
    -0
      libavcodec/vp6.c

+ 1
- 0
libavcodec/vp5.c View File

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

+ 2
- 0
libavcodec/vp6.c 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,
};

Loading…
Cancel
Save