jellyfin-server/MediaBrowser.Model/Dlna/CodecProfile.cs

68 lines
1.8 KiB
C#
Raw Normal View History

2014-06-05 02:32:40 +00:00
using MediaBrowser.Model.Extensions;
2014-03-24 17:54:45 +00:00
using System.Collections.Generic;
2014-03-26 15:06:48 +00:00
using System.Xml.Serialization;
2014-03-22 20:02:10 +00:00
2014-04-01 22:23:07 +00:00
namespace MediaBrowser.Model.Dlna
2014-03-22 20:02:10 +00:00
{
public class CodecProfile
{
2014-03-26 15:06:48 +00:00
[XmlAttribute("type")]
2014-03-22 20:02:10 +00:00
public CodecType Type { get; set; }
2014-03-26 15:06:48 +00:00
2014-03-23 16:42:02 +00:00
public ProfileCondition[] Conditions { get; set; }
2014-03-26 15:06:48 +00:00
2016-07-09 17:39:04 +00:00
public ProfileCondition[] ApplyConditions { get; set; }
2014-03-26 15:06:48 +00:00
[XmlAttribute("codec")]
public string Codec { get; set; }
2014-03-22 20:02:10 +00:00
2015-05-07 03:11:51 +00:00
[XmlAttribute("container")]
public string Container { get; set; }
2014-03-22 20:02:10 +00:00
public CodecProfile()
{
2014-03-23 16:42:02 +00:00
Conditions = new ProfileCondition[] {};
2016-07-09 17:39:04 +00:00
ApplyConditions = new ProfileCondition[] { };
}
public List<string> GetCodecs()
{
2014-05-08 21:23:24 +00:00
List<string> list = new List<string>();
foreach (string i in (Codec ?? string.Empty).Split(','))
{
if (!string.IsNullOrEmpty(i)) list.Add(i);
}
return list;
2014-03-22 20:02:10 +00:00
}
2014-03-24 17:54:45 +00:00
2015-05-07 03:11:51 +00:00
public List<string> GetContainers()
{
List<string> list = new List<string>();
foreach (string i in (Container ?? string.Empty).Split(','))
{
if (!string.IsNullOrEmpty(i)) list.Add(i);
}
return list;
}
private bool ContainsContainer(string container)
{
List<string> containers = GetContainers();
return containers.Count == 0 || ListHelper.ContainsIgnoreCase(containers, container ?? string.Empty);
}
public bool ContainsCodec(string codec, string container)
2014-03-24 17:54:45 +00:00
{
2015-05-07 03:11:51 +00:00
if (!ContainsContainer(container))
{
return false;
}
List<string> codecs = GetCodecs();
2014-03-24 17:54:45 +00:00
2014-06-05 02:32:40 +00:00
return codecs.Count == 0 || ListHelper.ContainsIgnoreCase(codecs, codec);
2014-03-24 17:54:45 +00:00
}
2014-03-22 20:02:10 +00:00
}
}