From 1c5f50dd078517a49ca8211e818bd8cb4b3c1667 Mon Sep 17 00:00:00 2001 From: Anssi Hannula Date: Sun, 8 Aug 2010 15:53:26 +0300 Subject: [PATCH 3/5] 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 7ebefc8..a817afd 100644 --- a/xbmc/cores/dvdplayer/DVDCodecs/Video/VDPAU.cpp +++ b/xbmc/cores/dvdplayer/DVDCodecs/Video/VDPAU.cpp @@ -615,7 +615,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