Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
Backport r34168
Browse files Browse the repository at this point in the history
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@35002 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
dteirney committed Oct 25, 2010
1 parent fa0c69a commit a501b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/dvdplayer/Edl.cpp
Expand Up @@ -97,7 +97,7 @@ bool CEdl::ReadEditDecisionLists(const CStdString& strMovie, const float fFrameR
CLog::Log(LOGDEBUG, "%s - Assuming PAL interlaced content. Adjusted frames per second from %.3f (~50.00 fps) to %.3f",
__FUNCTION__, fFrameRate, fFramesPerSecond);
}
else if (iHeight == 1080) // Don't know of any 1080p content being broadcast so assume 1080i
else if (iHeight == 1080 && fFrameRate > 30.0) // Don't know of any 1080p content being broadcast at higher than 30.0 fps so assume 1080i
{
fFramesPerSecond = fFrameRate / 2;
CLog::Log(LOGDEBUG, "%s - Assuming 1080i interlaced content. Adjusted frames per second from %.3f to %.3f",
Expand Down

0 comments on commit a501b23

Please sign in to comment.