ソースを参照

Merge pull request #4548 from orryverducci/mkv-interlaced-fix

Revert "Fix frame rate probing for interlaced MKV files"
Joshua M. Boniface 4 年 前
コミット
f39e55e2e5
1 ファイル変更0 行追加10 行削除
  1. 0 10
      MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs

+ 0 - 10
MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs

@@ -694,16 +694,6 @@ namespace MediaBrowser.MediaEncoding.Probing
                 stream.AverageFrameRate = GetFrameRate(streamInfo.AverageFrameRate);
                 stream.RealFrameRate = GetFrameRate(streamInfo.RFrameRate);
 
-                // Interlaced video streams in Matroska containers return the field rate instead of the frame rate
-                // as both the average and real frame rate, so we half the returned frame rates to get the correct values
-                //
-                // https://gitlab.com/mbunkus/mkvtoolnix/-/wikis/Wrong-frame-rate-displayed
-                if (stream.IsInterlaced && formatInfo.FormatName.Contains("matroska", StringComparison.OrdinalIgnoreCase))
-                {
-                    stream.AverageFrameRate /= 2;
-                    stream.RealFrameRate /= 2;
-                }
-
                 if (isAudio || string.Equals(stream.Codec, "gif", StringComparison.OrdinalIgnoreCase) ||
                     string.Equals(stream.Codec, "png", StringComparison.OrdinalIgnoreCase))
                 {