[FFmpeg-cvslog] libvpxdec: set CODEC_CAP_DR1 for vp9

James Zern git at videolan.org
Sat Nov 23 17:59:39 CET 2013


ffmpeg | branch: master | James Zern <jzern at google.com> | Fri Nov 22 20:26:22 2013 -0800| [6819eaf31bf8eaf59b1d211295ba438172d7ff60] | committer: Michael Niedermayer

libvpxdec: set CODEC_CAP_DR1 for vp9

it shares vp8_decode() with vp8 which already has the flag set

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6819eaf31bf8eaf59b1d211295ba438172d7ff60
---

 libavcodec/libvpxdec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libvpxdec.c b/libavcodec/libvpxdec.c
index 897a68b..b2471c7 100644
--- a/libavcodec/libvpxdec.c
+++ b/libavcodec/libvpxdec.c
@@ -144,6 +144,6 @@ AVCodec ff_libvpx_vp9_decoder = {
     .init           = vp9_init,
     .close          = vp8_free,
     .decode         = vp8_decode,
-    .capabilities   = CODEC_CAP_AUTO_THREADS | CODEC_CAP_EXPERIMENTAL,
+    .capabilities   = CODEC_CAP_AUTO_THREADS | CODEC_CAP_DR1 | CODEC_CAP_EXPERIMENTAL,
 };
 #endif /* CONFIG_LIBVPX_VP9_DECODER */



More information about the ffmpeg-cvslog mailing list