2020-04-05 09:10:56 -07:00
|
|
|
#nullable disable
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2020-05-01 07:48:33 -07:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
2019-01-13 13:02:23 -07:00
|
|
|
using System.Xml.Serialization;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
{
|
|
|
|
public class SubtitleProfile
|
|
|
|
{
|
|
|
|
[XmlAttribute("format")]
|
|
|
|
public string Format { get; set; }
|
|
|
|
|
|
|
|
[XmlAttribute("method")]
|
|
|
|
public SubtitleDeliveryMethod Method { get; set; }
|
|
|
|
|
|
|
|
[XmlAttribute("didlMode")]
|
|
|
|
public string DidlMode { get; set; }
|
|
|
|
|
|
|
|
[XmlAttribute("language")]
|
|
|
|
public string Language { get; set; }
|
|
|
|
|
|
|
|
[XmlAttribute("container")]
|
|
|
|
public string Container { get; set; }
|
|
|
|
|
|
|
|
public string[] GetLanguages()
|
|
|
|
{
|
|
|
|
return ContainerProfile.SplitValue(Language);
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool SupportsLanguage(string subLanguage)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(Language))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(subLanguage))
|
|
|
|
{
|
|
|
|
subLanguage = "und";
|
|
|
|
}
|
|
|
|
|
|
|
|
var languages = GetLanguages();
|
2020-05-01 07:48:33 -07:00
|
|
|
return languages.Length == 0 || languages.Contains(subLanguage, StringComparer.OrdinalIgnoreCase);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|
2018-12-27 14:43:48 -07:00
|
|
|
}
|