aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-22 12:05:32 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-22 12:05:32 -0500
commit60bf0edbde5f51cff28f1b3d5718b0a2b12a878f (patch)
tree6ac073eb41fa010a5c554ac721380bce8a8ce7ad /MediaBrowser.Api/Playback/BaseStreamingService.cs
parent0a1ae62559e67b102dcb544d766366ef2d0c7139 (diff)
remove hardcoded stream params
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 3a72ced17..f872b7274 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -1062,7 +1062,6 @@ namespace MediaBrowser.Api.Playback
state.ReadInputAtNativeFramerate = recording.RecordingInfo.Status == RecordingStatus.InProgress;
state.AudioSync = 1000;
state.DeInterlace = true;
- state.InputFormat = "mpegts";
}
else if (item is LiveTvChannel)
{
@@ -1091,9 +1090,6 @@ namespace MediaBrowser.Api.Playback
state.ReadInputAtNativeFramerate = true;
state.AudioSync = 1000;
state.DeInterlace = true;
- state.InputFormat = "mpegts";
-
- await Task.Delay(1000, cancellationToken).ConfigureAwait(false);
}
else
{