mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
added new device profiles
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user