Skip to content

Commit

Permalink
MP1-5188: Core: Double video FPS for MBAFF scan type
Browse files Browse the repository at this point in the history
  • Loading branch information
epbk committed Jan 21, 2024
1 parent 1a8171b commit 88528c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mediaportal/Core/Player/RefreshRateChanger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ public static void AdaptRefreshRate(string strFile, MediaType type)

Log.Info("RefreshRateChanger.AdaptRefreshRate: Scantype on file {0} is {1}", strFile, g_Player.MediaInfo.ScanType);

if (g_Player.MediaInfo.IsInterlaced)
if (g_Player.MediaInfo.IsInterlaced || g_Player.MediaInfo.ScanType.Equals("mbaff", StringComparison.OrdinalIgnoreCase))
{
Log.Info("RefreshRateChanger.AdaptRefreshRate: Interlacing detected on file {0}. Fps is {1}", strFile, fps);

Expand Down

0 comments on commit 88528c2

Please sign in to comment.