aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/StreamState.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-20 16:23:40 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-20 16:23:40 -0400
commit1292eccfb57d82110d197d7fa2f1f6bbf01a7e18 (patch)
tree1b0fc79b52662dc680a791162379c5ccc8ae3ef7 /MediaBrowser.Api/Playback/StreamState.cs
parent3be4aa8dc729f5899658790f43a1d1c182e7a243 (diff)
add reel
Diffstat (limited to 'MediaBrowser.Api/Playback/StreamState.cs')
-rw-r--r--MediaBrowser.Api/Playback/StreamState.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/StreamState.cs b/MediaBrowser.Api/Playback/StreamState.cs
index 24b2bebd3..8f45c95da 100644
--- a/MediaBrowser.Api/Playback/StreamState.cs
+++ b/MediaBrowser.Api/Playback/StreamState.cs
@@ -97,7 +97,12 @@ namespace MediaBrowser.Api.Playback
public bool ReadInputAtNativeFramerate
{
- get { return InputProtocol == MediaProtocol.Rtmp || string.Equals(InputContainer, "wtv", StringComparison.OrdinalIgnoreCase); }
+ get {
+
+ return InputProtocol == MediaProtocol.Rtmp ||
+ string.Equals(InputContainer, "wtv", StringComparison.OrdinalIgnoreCase) ||
+ !string.IsNullOrEmpty(LiveTvStreamId);
+ }
}
public TransportStreamTimestamp InputTimestamp { get; set; }