aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
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>();