added new device profiles

This commit is contained in:
Luke Pulverenti
2014-07-16 23:17:14 -04:00
parent 21c3430ac4
commit e2052c771d
94 changed files with 3031 additions and 554 deletions

View File

@@ -32,6 +32,9 @@ namespace MediaBrowser.Model.Dlna
[XmlAttribute("videoProfile")]
public string VideoProfile { get; set; }
[XmlAttribute("context")]
public EncodingContext Context { get; set; }
public List<string> GetAudioCodecs()
{
List<string> list = new List<string>();
@@ -42,4 +45,10 @@ namespace MediaBrowser.Model.Dlna
return list;
}
}
public enum EncodingContext
{
Streaming = 0,
Static = 1
}
}