diff options
| author | Vasily <just.one.man@yandex.ru> | 2019-10-21 12:04:57 +0300 |
|---|---|---|
| committer | Vasily <just.one.man@yandex.ru> | 2019-10-21 12:05:49 +0300 |
| commit | 3743137c312581412c00c29907f7c8c2ca884ffc (patch) | |
| tree | cf087982e2c14736067f53dc8912beea05d56aba /MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs | |
| parent | ae2b95024f8da21910bf3d3706aa5eff8d66f4a1 (diff) | |
Address Bond-009 review comments
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs index 0aa067904..0f4e44972 100644 --- a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs +++ b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs @@ -2168,8 +2168,8 @@ namespace MediaBrowser.Controller.MediaEncoding // Important: If this is ever re-enabled, make sure not to use it with wtv because it breaks seeking if (!string.Equals(state.InputContainer, "wtv", StringComparison.OrdinalIgnoreCase) && state.TranscodingType != TranscodingJobType.Progressive - && !state.EnableBreakOnNonKeyFrames(outputVideoCodec) && - (state.BaseRequest.StartTimeTicks ?? 0) > 0) + && !state.EnableBreakOnNonKeyFrames(outputVideoCodec) + && (state.BaseRequest.StartTimeTicks ?? 0) > 0) { inputModifier += " -noaccurate_seek"; } |
