diff options
author | davilla <davilla@4pi.com> | 2012-12-28 15:32:27 -0500 |
---|---|---|
committer | Trent Nelson <trent.a.b.nelson@gmail.com> | 2013-09-20 12:43:00 -0400 |
commit | 3143bb2d170aa817c3520c41736036548b618ca0 (patch) | |
tree | 424a391e7a6836d1c4a94be83c95c8d70c2cf4f8 | |
parent | 0195a725cad6d4f2976ed1ae9dcf85b86d14dc7b (diff) |
Don't flag 720p60 as NTSC or 60i.
-rw-r--r-- | xbmc/cores/dvdplayer/Edl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/cores/dvdplayer/Edl.cpp b/xbmc/cores/dvdplayer/Edl.cpp index bdf4ab37b0..f1baf9429d 100644 --- a/xbmc/cores/dvdplayer/Edl.cpp +++ b/xbmc/cores/dvdplayer/Edl.cpp @@ -81,7 +81,7 @@ bool CEdl::ReadEditDecisionLists(const CStdString& strMovie, const float fFrameR * back frame markers. However, this doesn't seem possible for MythTV. */ float fFramesPerSecond; - if (int(fFrameRate * 100) == 5994) // 59.940 fps = NTSC or 60i content + if (iHeight <= 480 && int(fFrameRate * 100) == 5994) // 59.940 fps = NTSC or 60i content except for 1280x720/60 { fFramesPerSecond = fFrameRate / 2; // ~29.97f - division used to retain accuracy of original. CLog::Log(LOGDEBUG, "%s - Assuming NTSC or 60i interlaced content. Adjusted frames per second from %.3f (~59.940 fps) to %.3f", |