From a501b23b4944c97329104b1bbbdc3a7f90c63aaa Mon Sep 17 00:00:00 2001 From: dteirney Date: Mon, 25 Oct 2010 06:40:21 +0000 Subject: [PATCH] Backport r34168 git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@35002 568bbfeb-2a22-0410-94d2-cc84cf5bfa90 --- xbmc/cores/dvdplayer/Edl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbmc/cores/dvdplayer/Edl.cpp b/xbmc/cores/dvdplayer/Edl.cpp index afe6dea04..9bff730c1 100644 --- a/xbmc/cores/dvdplayer/Edl.cpp +++ b/xbmc/cores/dvdplayer/Edl.cpp @@ -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",