You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Dlna
|
|
|
|
|
{
|
|
|
|
|
public class DirectPlayProfile
|
|
|
|
|
{
|
|
|
|
|
public string[] Containers { get; set; }
|
|
|
|
|
public string[] AudioCodecs { get; set; }
|
|
|
|
|
public string[] VideoCodecs { get; set; }
|
|
|
|
|
|
|
|
|
|
public DlnaProfileType Type { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<ProfileCondition> Conditions { get; set; }
|
|
|
|
|
|
|
|
|
|
public DirectPlayProfile()
|
|
|
|
|
{
|
|
|
|
|
Conditions = new List<ProfileCondition>();
|
|
|
|
|
|
|
|
|
|
AudioCodecs = new string[] { };
|
|
|
|
|
VideoCodecs = new string[] { };
|
|
|
|
|
Containers = new string[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum DlnaProfileType
|
|
|
|
|
{
|
|
|
|
|
Audio = 0,
|
|
|
|
|
Video = 1,
|
|
|
|
|
Photo = 2
|
|
|
|
|
}
|
|
|
|
|
}
|