jellyfin/MediaBrowser.Model/Dlna/CodecProfile.cs

71 lines
1.9 KiB
C#
Raw Normal View History

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