You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
using MediaBrowser.Model.Extensions;
|
|
using System.Xml.Serialization;
|
|
|
|
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();
|
|
return languages.Length == 0 || ListHelper.ContainsIgnoreCase(languages, subLanguage);
|
|
}
|
|
}
|
|
}
|