aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-01 15:41:35 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-01 15:41:35 -0400
commit37683565e71fc132dd7aaf77d4418afd4ea5f643 (patch)
treeb45337e83829d314d60f4ed6e8edd97dd2bf41e5 /MediaBrowser.Controller
parent20d35a640570eab1a47e4bd8c156f1e8aeb7db2d (diff)
added new channel settings
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/Channels/ChannelMediaInfo.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs b/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs
index 363034267..b38ef363a 100644
--- a/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs
+++ b/MediaBrowser.Controller/Channels/ChannelMediaInfo.cs
@@ -17,9 +17,14 @@ namespace MediaBrowser.Controller.Channels
public int? Width { get; set; }
public int? Height { get; set; }
public int? AudioChannels { get; set; }
+ public int? AudioSampleRate { get; set; }
public bool IsRemote { get; set; }
+ public string VideoProfile { get; set; }
+ public float? VideoLevel { get; set; }
+ public float? Framerate { get; set; }
+
public ChannelMediaInfo()
{
RequiredHttpHeaders = new Dictionary<string, string>();