jellyfin/MediaBrowser.Model/Dlna/CodecProfile.cs

69 lines
1.7 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;
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-08-19 21:43:35 +02:00
public string[] GetCodecs()
{
2017-08-19 21:43:35 +02:00
return ContainerProfile.SplitValue(Codec);
2017-06-07 06:56:48 +02:00
}
2015-05-07 05:11:51 +02:00
private bool ContainsContainer(string container)
{
2017-08-04 08:34:46 +02:00
return ContainerProfile.ContainsContainer(Container, container);
2015-05-07 05:11:51 +02:00
}
2017-09-25 07:06:15 +02:00
public bool ContainsAnyCodec(string codec, string container)
{
return ContainsAnyCodec(ContainerProfile.SplitValue(codec), container);
}
public bool ContainsAnyCodec(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;
}
2017-08-19 21:43:35 +02:00
var codecs = GetCodecs();
2017-09-25 07:06:15 +02:00
if (codecs.Length == 0)
{
return true;
}
foreach (var val in codec)
{
if (ListHelper.ContainsIgnoreCase(codecs, val))
{
return true;
}
}
2014-03-24 18:54:45 +01:00
2017-09-25 07:06:15 +02:00
return false;
2014-03-24 18:54:45 +01:00
}
2014-03-22 21:02:10 +01:00
}
}