From 322e468eeafa2de9cb25c24ec72375c42a0108bd Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 13 Mar 2015 14:51:11 -0400 Subject: [PATCH] re-activate throttle --- MediaBrowser.Api/Playback/TranscodingThrottler.cs | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/MediaBrowser.Api/Playback/TranscodingThrottler.cs b/MediaBrowser.Api/Playback/TranscodingThrottler.cs index f22ef4326c..c486a44eac 100644 --- a/MediaBrowser.Api/Playback/TranscodingThrottler.cs +++ b/MediaBrowser.Api/Playback/TranscodingThrottler.cs @@ -25,10 +25,7 @@ namespace MediaBrowser.Api.Playback public void Start() { - if (_processManager.SupportsSuspension) - { - //_timer = new Timer(TimerCallback, null, 5000, 5000); - } + _timer = new Timer(TimerCallback, null, 5000, 5000); } private void TimerCallback(object state) @@ -58,8 +55,7 @@ namespace MediaBrowser.Api.Playback try { - //_job.Process.StandardInput.WriteLine("p"); - _processManager.SuspendProcess(_job.Process); + _job.Process.StandardInput.WriteLine("p"); _isPaused = true; } catch (Exception ex) @@ -77,8 +73,7 @@ namespace MediaBrowser.Api.Playback try { - //_job.Process.StandardInput.WriteLine("u"); - _processManager.ResumeProcess(_job.Process); + _job.Process.StandardInput.WriteLine("u"); _isPaused = false; } catch (Exception ex)