Skip to content

Commit

Permalink
[rbp] changed don't limit deinterlaced by size. upstream firmware can…
Browse files Browse the repository at this point in the history
… now do bob on 1080i.
  • Loading branch information
huceke committed Sep 25, 2012
1 parent b0d8f14 commit e8444e4
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions xbmc/cores/omxplayer/OMXVideo.cpp
Expand Up @@ -249,15 +249,9 @@ bool COMXVideo::Open(CDVDStreamInfo &hints, OMXClock *clock, bool deinterlace, b
break;
}

if(m_decoded_width <= 720 && m_decoded_height <=576 && deinterlace)
{
m_deinterlace = deinterlace;
if(m_deinterlace)
CLog::Log(LOGDEBUG, "COMXVideo::Open : enable deinterlace\n");
m_deinterlace = true;
}
else
{
m_deinterlace = false;
}

std::string componentName = "";

Expand Down

0 comments on commit e8444e4

Please sign in to comment.