From 3b92c03e0d9baf683e11f1bb14c6e5307fc99cc7 Mon Sep 17 00:00:00 2001 From: Anssi Hannula Date: Sun, 8 Aug 2010 15:53:26 +0300 Subject: [PATCH 3/7] changed: allow VDPAU reverse telecine when deinterlacing set to automatic When automatic deinterlacing is active, allow reverse telecine to take place if the driver detects an appropriate video stream. --- xbmc/cores/dvdplayer/DVDCodecs/Video/VDPAU.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xbmc/cores/dvdplayer/DVDCodecs/Video/VDPAU.cpp b/xbmc/cores/dvdplayer/DVDCodecs/Video/VDPAU.cpp index 2c3e54a..00f2000 100644 --- a/xbmc/cores/dvdplayer/DVDCodecs/Video/VDPAU.cpp +++ b/xbmc/cores/dvdplayer/DVDCodecs/Video/VDPAU.cpp @@ -616,7 +616,7 @@ void CVDPAU::SetDeinterlacing() if (method == VS_INTERLACEMETHOD_AUTO) { - VdpBool enabled[]={1,1,0}; + VdpBool enabled[]={1,1,1}; vdp_st = vdp_video_mixer_set_feature_enables(videoMixer, ARSIZE(feature), feature, enabled); } else if (method == VS_INTERLACEMETHOD_VDPAU_TEMPORAL -- 1.7.2