OSDN Git Service

set CODEC_CAP_DR1 for vp5 and vp6 decoders
authorAurelien Jacobs <aurel@gnuage.org>
Sat, 5 May 2007 15:21:57 +0000 (15:21 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Sat, 5 May 2007 15:21:57 +0000 (15:21 +0000)
Originally committed as revision 8896 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/vp5.c
libavcodec/vp6.c

index 8a8c217..95eb775 100644 (file)
@@ -287,4 +287,5 @@ AVCodec vp5_decoder = {
     NULL,
     vp56_free,
     vp56_decode_frame,
+    CODEC_CAP_DR1,
 };
index 2e904b7..e6e81da 100644 (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,
 };