2014-03-22 12:37:15 -07:00
|
|
|
|
using System.Collections.Generic;
|
2014-03-22 13:50:28 -07:00
|
|
|
|
using System.Linq;
|
2014-03-26 08:06:48 -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
|
|
|
|
|
{
|
2014-03-26 08:06:48 -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
|
|
|
|
|
|
|
|
|
[XmlAttribute("audioCodec")]
|
2014-03-22 13:50:28 -07:00
|
|
|
|
public string AudioCodec { get; set; }
|
2014-03-26 08:06:48 -07:00
|
|
|
|
|
|
|
|
|
[XmlAttribute("videoCodec")]
|
2014-03-22 13:50:28 -07:00
|
|
|
|
public string VideoCodec { get; set; }
|
2014-03-14 21:14:07 -07:00
|
|
|
|
|
2014-03-26 08:06:48 -07:00
|
|
|
|
[XmlAttribute("type")]
|
2014-03-13 12:08:02 -07:00
|
|
|
|
public DlnaProfileType Type { get; set; }
|
|
|
|
|
|
2014-03-22 23:07:43 -07:00
|
|
|
|
public List<string> GetContainers()
|
|
|
|
|
{
|
2014-04-01 15:23:07 -07:00
|
|
|
|
return (Container ?? string.Empty).Split(',').Where(i => !string.IsNullOrEmpty(i)).ToList();
|
2014-03-13 12:08:02 -07:00
|
|
|
|
}
|
2014-03-22 13:50:28 -07:00
|
|
|
|
|
|
|
|
|
public List<string> GetAudioCodecs()
|
|
|
|
|
{
|
2014-04-01 15:23:07 -07:00
|
|
|
|
return (AudioCodec ?? string.Empty).Split(',').Where(i => !string.IsNullOrEmpty(i)).ToList();
|
2014-03-22 13:50:28 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<string> GetVideoCodecs()
|
|
|
|
|
{
|
2014-04-01 15:23:07 -07:00
|
|
|
|
return (VideoCodec ?? string.Empty).Split(',').Where(i => !string.IsNullOrEmpty(i)).ToList();
|
2014-03-22 13:50:28 -07:00
|
|
|
|
}
|
2014-03-13 12:08:02 -07:00
|
|
|
|
}
|
|
|
|
|
}
|