jellyfin/MediaBrowser.Model/Dlna/CodecProfile.cs

69 lines
1.7 KiB
C#
Raw Normal View History

2014-06-04 19:32:40 -07:00
using MediaBrowser.Model.Extensions;
2014-03-24 10:54:45 -07:00
using System.Collections.Generic;
2014-03-26 08:06:48 -07:00
using System.Xml.Serialization;
2016-12-09 00:23:09 -07:00
using MediaBrowser.Model.Dlna;
2014-03-22 13:02:10 -07:00
2014-04-01 15:23:07 -07:00
namespace MediaBrowser.Model.Dlna
2014-03-22 13:02:10 -07:00
{
public class CodecProfile
{
2016-12-09 00:23:09 -07:00
[XmlAttribute("type")]
2014-03-22 13:02:10 -07:00
public CodecType Type { get; set; }
2014-03-26 08:06:48 -07:00
2014-03-23 09:42:02 -07:00
public ProfileCondition[] Conditions { get; set; }
2014-03-26 08:06:48 -07:00
2016-07-09 10:39:04 -07:00
public ProfileCondition[] ApplyConditions { get; set; }
2016-12-09 00:23:09 -07:00
[XmlAttribute("codec")]
public string Codec { get; set; }
2014-03-22 13:02:10 -07:00
2016-12-09 00:23:09 -07:00
[XmlAttribute("container")]
2015-05-06 20:11:51 -07:00
public string Container { get; set; }
2014-03-22 13:02:10 -07:00
public CodecProfile()
{
2014-03-23 09:42:02 -07:00
Conditions = new ProfileCondition[] {};
2016-07-09 10:39:04 -07:00
ApplyConditions = new ProfileCondition[] { };
}
2017-08-19 12:43:35 -07:00
public string[] GetCodecs()
{
2017-08-19 12:43:35 -07:00
return ContainerProfile.SplitValue(Codec);
2017-06-06 21:56:48 -07:00
}
2015-05-06 20:11:51 -07:00
private bool ContainsContainer(string container)
{
2017-08-03 23:34:46 -07:00
return ContainerProfile.ContainsContainer(Container, container);
2015-05-06 20:11:51 -07:00
}
2017-09-24 22:06:15 -07:00
public bool ContainsAnyCodec(string codec, string container)
{
return ContainsAnyCodec(ContainerProfile.SplitValue(codec), container);
}
public bool ContainsAnyCodec(string[] codec, string container)
2014-03-24 10:54:45 -07:00
{
2015-05-06 20:11:51 -07:00
if (!ContainsContainer(container))
{
return false;
}
2017-08-19 12:43:35 -07:00
var codecs = GetCodecs();
2017-09-24 22:06:15 -07:00
if (codecs.Length == 0)
{
return true;
}
foreach (var val in codec)
{
if (ListHelper.ContainsIgnoreCase(codecs, val))
{
return true;
}
}
2014-03-24 10:54:45 -07:00
2017-09-24 22:06:15 -07:00
return false;
2014-03-24 10:54:45 -07:00
}
2014-03-22 13:02:10 -07:00
}
}