Merge pull request #11772 from Bond-009/audioProfile

Prefer profile over codec for display title
pull/11814/head
Bond-009 4 months ago committed by GitHub
commit c975d50cdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -267,13 +267,13 @@ namespace MediaBrowser.Model.Entities
attributes.Add(StringHelper.FirstToUpper(fullLanguage ?? Language)); attributes.Add(StringHelper.FirstToUpper(fullLanguage ?? Language));
} }
if (!string.IsNullOrEmpty(Codec) && !string.Equals(Codec, "dca", StringComparison.OrdinalIgnoreCase) && !string.Equals(Codec, "dts", StringComparison.OrdinalIgnoreCase)) if (!string.IsNullOrEmpty(Profile) && !string.Equals(Profile, "lc", StringComparison.OrdinalIgnoreCase))
{ {
attributes.Add(AudioCodec.GetFriendlyName(Codec)); attributes.Add(Profile);
} }
else if (!string.IsNullOrEmpty(Profile) && !string.Equals(Profile, "lc", StringComparison.OrdinalIgnoreCase)) else if (!string.IsNullOrEmpty(Codec))
{ {
attributes.Add(Profile); attributes.Add(AudioCodec.GetFriendlyName(Codec));
} }
if (!string.IsNullOrEmpty(ChannelLayout)) if (!string.IsNullOrEmpty(ChannelLayout))

Loading…
Cancel
Save