jellyfin/MediaBrowser.Model/Dlna/DirectPlayProfile.cs

47 lines
1.2 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2016-12-09 00:23:09 -07:00
using System.Xml.Serialization;
2014-03-14 21:14:07 -07:00
2014-04-01 15:23:07 -07:00
namespace MediaBrowser.Model.Dlna
2014-03-13 12:08:02 -07:00
{
public class DirectPlayProfile
{
2016-12-09 00:23:09 -07:00
[XmlAttribute("container")]
2014-03-22 23:07:43 -07:00
public string Container { get; set; }
2014-03-26 08:06:48 -07:00
2016-12-09 00:23:09 -07:00
[XmlAttribute("audioCodec")]
public string AudioCodec { get; set; }
2014-03-26 08:06:48 -07:00
2016-12-09 00:23:09 -07:00
[XmlAttribute("videoCodec")]
public string VideoCodec { get; set; }
2014-03-14 21:14:07 -07:00
2016-12-09 00:23:09 -07:00
[XmlAttribute("type")]
2014-03-13 12:08:02 -07:00
public DlnaProfileType Type { get; set; }
public bool SupportsContainer(string container)
{
2017-08-03 23:34:46 -07:00
return ContainerProfile.ContainsContainer(Container, container);
}
public List<string> GetAudioCodecs()
{
2014-05-08 14:23:24 -07:00
List<string> list = new List<string>();
foreach (string i in (AudioCodec ?? string.Empty).Split(','))
{
if (!string.IsNullOrEmpty(i)) list.Add(i);
}
return list;
}
public List<string> GetVideoCodecs()
{
2014-05-08 14:23:24 -07:00
List<string> list = new List<string>();
foreach (string i in (VideoCodec ?? string.Empty).Split(','))
{
if (!string.IsNullOrEmpty(i)) list.Add(i);
}
return list;
}
2014-03-13 12:08:02 -07:00
}
}