diff libmpcodecs/vd_ffmpeg.c @ 36414:41cef3e079b8

Try enabling DR for FFmpeg VP8 decoder. VP8 seems to have emu-edge support now. There might still be other issues, so bug reports welcome.
author reimar
date Sat, 16 Nov 2013 07:37:32 +0000
parents ac6843fb4f01
children 06bdd36f5c46
line wrap: on
line diff
--- a/libmpcodecs/vd_ffmpeg.c	Sat Nov 16 07:33:54 2013 +0000
+++ b/libmpcodecs/vd_ffmpeg.c	Sat Nov 16 07:37:32 2013 +0000
@@ -255,8 +255,7 @@
     ctx->do_dr1 = (lavc_codec->capabilities & CODEC_CAP_DR1) &&
         lavc_codec->id != AV_CODEC_ID_INTERPLAY_VIDEO &&
         lavc_codec->id != AV_CODEC_ID_H264 &&
-        lavc_codec->id != AV_CODEC_ID_HEVC &&
-        lavc_codec->id != AV_CODEC_ID_VP8;
+        lavc_codec->id != AV_CODEC_ID_HEVC;
     ctx->nonref_dr = 0;
     // TODO: fix and enable again. This currently causes issues when using filters
     // and seeking, usually failing with the "Ran out of numbered images" message,