diff options
author | James Zern <jzern@google.com> | 2013-11-22 20:26:22 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-11-23 16:58:03 +0100 |
commit | 6819eaf31bf8eaf59b1d211295ba438172d7ff60 (patch) | |
tree | 6fec6e78cdb38fdc537659780706c97faeaaf196 /libavcodec | |
parent | f63ee2aa14ec1b018a2b78a8f543a71a9b51f9e0 (diff) | |
download | ffmpeg-6819eaf31bf8eaf59b1d211295ba438172d7ff60.tar.gz |
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@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/libvpxdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libvpxdec.c b/libavcodec/libvpxdec.c index 897a68bdad..b2471c722b 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 */ |