normalize subtitle names

This commit is contained in:
Luke Pulverenti 2016-10-29 16:02:31 -04:00
parent da20e8dcd2
commit bfe2b501a6

View file

@ -400,7 +400,11 @@ namespace MediaBrowser.MediaEncoding.Probing
private string NormalizeSubtitleCodec(string codec)
{
if ((codec ?? string.Empty).IndexOf("PGS", StringComparison.OrdinalIgnoreCase) != -1)
if (string.Equals(codec, "dvb_subtitle", StringComparison.OrdinalIgnoreCase))
{
codec = "dvbsub";
}
else if ((codec ?? string.Empty).IndexOf("PGS", StringComparison.OrdinalIgnoreCase) != -1)
{
codec = "PGSSUB";
}