mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
fix SA1005
This commit is contained in:
@@ -562,7 +562,7 @@ namespace MediaBrowser.MediaEncoding.Probing
|
||||
if (string.Equals(streamInfo.CodecName, "mov_text", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
// Edit: but these are also sometimes subtitles?
|
||||
//return null;
|
||||
// return null;
|
||||
}
|
||||
|
||||
var stream = new MediaStream
|
||||
@@ -684,7 +684,7 @@ namespace MediaBrowser.MediaEncoding.Probing
|
||||
stream.BitDepth = streamInfo.BitsPerRawSample;
|
||||
}
|
||||
|
||||
//stream.IsAnamorphic = string.Equals(streamInfo.sample_aspect_ratio, "0:1", StringComparison.OrdinalIgnoreCase) ||
|
||||
// stream.IsAnamorphic = string.Equals(streamInfo.sample_aspect_ratio, "0:1", StringComparison.OrdinalIgnoreCase) ||
|
||||
// string.Equals(stream.AspectRatio, "2.35:1", StringComparison.OrdinalIgnoreCase) ||
|
||||
// string.Equals(stream.AspectRatio, "2.40:1", StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
@@ -953,8 +953,8 @@ namespace MediaBrowser.MediaEncoding.Probing
|
||||
audio.People = peoples.ToArray();
|
||||
}
|
||||
|
||||
//var conductor = FFProbeHelpers.GetDictionaryValue(tags, "conductor");
|
||||
//if (!string.IsNullOrWhiteSpace(conductor))
|
||||
// var conductor = FFProbeHelpers.GetDictionaryValue(tags, "conductor");
|
||||
// if (!string.IsNullOrWhiteSpace(conductor))
|
||||
//{
|
||||
// foreach (var person in Split(conductor, false))
|
||||
// {
|
||||
@@ -962,8 +962,8 @@ namespace MediaBrowser.MediaEncoding.Probing
|
||||
// }
|
||||
//}
|
||||
|
||||
//var lyricist = FFProbeHelpers.GetDictionaryValue(tags, "lyricist");
|
||||
//if (!string.IsNullOrWhiteSpace(lyricist))
|
||||
// var lyricist = FFProbeHelpers.GetDictionaryValue(tags, "lyricist");
|
||||
// if (!string.IsNullOrWhiteSpace(lyricist))
|
||||
//{
|
||||
// foreach (var person in Split(lyricist, false))
|
||||
// {
|
||||
|
||||
Reference in New Issue
Block a user