[MPlayer-cvslog] r36510 - in trunk: etc/codecs.conf libmpcodecs/vd_ffmpeg.c
reimar
subversion at mplayerhq.hu
Sat Nov 16 08:37:32 CET 2013
Author: reimar
Date: Sat Nov 16 08:37:32 2013
New Revision: 36510
Log:
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.
Modified:
trunk/etc/codecs.conf
trunk/libmpcodecs/vd_ffmpeg.c
Modified: trunk/etc/codecs.conf
==============================================================================
--- trunk/etc/codecs.conf Sat Nov 16 08:33:54 2013 (r36509)
+++ trunk/etc/codecs.conf Sat Nov 16 08:37:32 2013 (r36510)
@@ -2934,7 +2934,6 @@ videocodec vp7
videocodec ffvp8
info "FFmpeg VP8"
- comment "not using direct rendering due to missing edge emulation"
status working
fourcc VP80
driver ffmpeg
Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c Sat Nov 16 08:33:54 2013 (r36509)
+++ trunk/libmpcodecs/vd_ffmpeg.c Sat Nov 16 08:37:32 2013 (r36510)
@@ -255,8 +255,7 @@ static void set_dr_slice_settings(struct
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,
More information about the MPlayer-cvslog
mailing list