aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Dlna/DirectPlayProfile.cs')
-rw-r--r--MediaBrowser.Controller/Dlna/DirectPlayProfile.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs b/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs
new file mode 100644
index 0000000000..f1922dd323
--- /dev/null
+++ b/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs
@@ -0,0 +1,25 @@
+
+namespace MediaBrowser.Controller.Dlna
+{
+ public class DirectPlayProfile
+ {
+ public string[] Containers { get; set; }
+ public string[] AudioCodecs { get; set; }
+ public string[] VideoCodecs { get; set; }
+ public string MimeType { get; set; }
+ public DlnaProfileType Type { get; set; }
+
+ public DirectPlayProfile()
+ {
+ Containers = new string[] { };
+ AudioCodecs = new string[] { };
+ VideoCodecs = new string[] { };
+ }
+ }
+
+ public enum DlnaProfileType
+ {
+ Audio = 0,
+ Video = 1
+ }
+}