2020-04-05 09:10:56 -07:00
|
|
|
#nullable disable
|
2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:02:23 -07:00
|
|
|
using System.Xml.Serialization;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
{
|
|
|
|
public class DirectPlayProfile
|
|
|
|
{
|
|
|
|
[XmlAttribute("container")]
|
|
|
|
public string Container { get; set; }
|
|
|
|
|
|
|
|
[XmlAttribute("audioCodec")]
|
|
|
|
public string AudioCodec { get; set; }
|
|
|
|
|
|
|
|
[XmlAttribute("videoCodec")]
|
|
|
|
public string VideoCodec { get; set; }
|
|
|
|
|
|
|
|
[XmlAttribute("type")]
|
|
|
|
public DlnaProfileType Type { get; set; }
|
|
|
|
|
|
|
|
public bool SupportsContainer(string container)
|
|
|
|
{
|
|
|
|
return ContainerProfile.ContainsContainer(Container, container);
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool SupportsVideoCodec(string codec)
|
|
|
|
{
|
2020-04-07 04:23:53 -07:00
|
|
|
return Type == DlnaProfileType.Video && ContainerProfile.ContainsContainer(VideoCodec, codec);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool SupportsAudioCodec(string codec)
|
|
|
|
{
|
2020-04-07 04:23:53 -07:00
|
|
|
return (Type == DlnaProfileType.Audio || Type == DlnaProfileType.Video) && ContainerProfile.ContainsContainer(AudioCodec, codec);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|