diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-21 20:37:01 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-21 20:37:01 -0500 |
| commit | 3d697cdab27baa33c9d00785fce6de4c448d6028 (patch) | |
| tree | 702420ef8c3dbd6cff4bb1631aa7774b71e3ba73 /MediaBrowser.Api/Playback/StreamState.cs | |
| parent | a29e1eb036d22d108ee4234d31650a061b591073 (diff) | |
added new stream info properties
Diffstat (limited to 'MediaBrowser.Api/Playback/StreamState.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/StreamState.cs | 8 |
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; } } } |
