aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/StreamState.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-21 20:37:01 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-21 20:37:01 -0500
commit3d697cdab27baa33c9d00785fce6de4c448d6028 (patch)
tree702420ef8c3dbd6cff4bb1631aa7774b71e3ba73 /MediaBrowser.Api/Playback/StreamState.cs
parenta29e1eb036d22d108ee4234d31650a061b591073 (diff)
added new stream info properties
Diffstat (limited to 'MediaBrowser.Api/Playback/StreamState.cs')
-rw-r--r--MediaBrowser.Api/Playback/StreamState.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Playback/StreamState.cs b/MediaBrowser.Api/Playback/StreamState.cs
index 5ade8e43a..1794ebd16 100644
--- a/MediaBrowser.Api/Playback/StreamState.cs
+++ b/MediaBrowser.Api/Playback/StreamState.cs
@@ -62,5 +62,13 @@ namespace MediaBrowser.Api.Playback
public int AudioSync = 1;
public bool DeInterlace { get; set; }
+
+ public bool ReadInputAtNativeFramerate { get; set; }
+
+ public string InputFormat { get; set; }
+
+ public string InputVideoCodec { get; set; }
+
+ public string InputAudioCodec { get; set; }
}
}