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")]
|
2021-05-01 04:06:10 -07:00
|
|
|
public string? Container { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
[XmlAttribute("audioCodec")]
|
2021-05-01 04:06:10 -07:00
|
|
|
public string? AudioCodec { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
[XmlAttribute("videoCodec")]
|
2021-05-01 04:06:10 -07:00
|
|
|
public string? VideoCodec { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
[XmlAttribute("type")]
|
|
|
|
public DlnaProfileType Type { get; set; }
|
|
|
|
|
2023-03-07 13:51:48 -07:00
|
|
|
public bool SupportsContainer(string? container)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
return ContainerProfile.ContainsContainer(Container, container);
|
|
|
|
}
|
|
|
|
|
2023-03-07 13:51:48 -07:00
|
|
|
public bool SupportsVideoCodec(string? codec)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
2020-04-07 04:23:53 -07:00
|
|
|
return Type == DlnaProfileType.Video && ContainerProfile.ContainsContainer(VideoCodec, codec);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
|
2023-03-07 13:51:48 -07:00
|
|
|
public bool SupportsAudioCodec(string? codec)
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
2021-05-04 14:38:17 -07:00
|
|
|
return (Type == DlnaProfileType.Audio || Type == DlnaProfileType.Video) && ContainerProfile.ContainsContainer(AudioCodec, codec);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|