Skip to content

Commit

Permalink
vdpau: correct field order for deinterlacing, credits to zgreg
Browse files Browse the repository at this point in the history
  • Loading branch information
FernetMenta committed Nov 5, 2013
1 parent 4bf98c4 commit 1791755
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xbmc/cores/dvdplayer/DVDCodecs/Video/VDPAU.cpp
Expand Up @@ -2465,8 +2465,8 @@ void CMixer::ProcessPicture()
past_surfaces[1] = m_mixerInput[2].videoSurface;
}
past_surfaces[0] = m_mixerInput[1].videoSurface;
futu_surfaces[0] = m_mixerInput[1].videoSurface;
futu_surfaces[1] = m_mixerInput[1].videoSurface;
futu_surfaces[0] = m_mixerInput[0].videoSurface;
futu_surfaces[1] = m_mixerInput[0].videoSurface;

if (m_mixerInput[0].DVDPic.pts != DVD_NOPTS_VALUE &&
m_mixerInput[1].DVDPic.pts != DVD_NOPTS_VALUE)
Expand Down

0 comments on commit 1791755

Please sign in to comment.