Skip to content

Commit

Permalink
Backport r34187
Browse files Browse the repository at this point in the history
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@35001 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
dteirney committed Oct 25, 2010
1 parent 937bb3a commit fa0c69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/dvdplayer/Edl.cpp
Expand Up @@ -91,7 +91,7 @@ bool CEdl::ReadEditDecisionLists(const CStdString& strMovie, const float fFrameR
CLog::Log(LOGDEBUG, "%s - Assuming 24p -> NTSC conversion interlaced content. Adjusted frames per second from %.3f (~47.952 fps) to %.3f",
__FUNCTION__, fFrameRate, fFramesPerSecond);
}
else if (iHeight == 576) // PAL. Can't used fps check of 50.0 as this is valid for 720p
else if (iHeight == 576 && fFrameRate > 30.0) // PAL @ 50.0fps rather than PAL @ 25.0 fps. Can't use direct fps check of 50.0 as this is valid for 720p
{
fFramesPerSecond = fFrameRate / 2; // ~25.0f - division used to retain accuracy of original.
CLog::Log(LOGDEBUG, "%s - Assuming PAL interlaced content. Adjusted frames per second from %.3f (~50.00 fps) to %.3f",
Expand Down

0 comments on commit fa0c69a

Please sign in to comment.