aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcryptobank <janda.petr@gmail.com>2019-12-14 11:15:30 +1030
committerPetr Janda <petr.janda@holidaysinhell.com>2019-12-14 11:27:41 +1030
commitf18d3ed33be09c2b083ffe407b180861dc94ea16 (patch)
treedfb7a8bb02cb1fe3d29dddbfbb0d7e3a52b23d94
parent1cec41baf831ba74f23dd0ce0de8ebadefadc78e (diff)
Formatting fix (3)
Co-Authored-By: Bond-009 <bond.009@outlook.com>
-rw-r--r--MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
index e3bd3c8c9..82fa0e856 100644
--- a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
+++ b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
@@ -948,7 +948,8 @@ namespace MediaBrowser.Api.Playback.Hls
args += " " + EncodingHelper.GetVideoQualityParam(state, codec, encodingOptions, GetDefaultEncoderPreset());
// Unable to force key frames to h264_qsv transcode
- if (string.Equals(codec, "h264_qsv", StringComparison.OrdinalIgnoreCase)) {
+ if (string.Equals(codec, "h264_qsv", StringComparison.OrdinalIgnoreCase))
+ {
Logger.LogInformation("Bug Workaround: Disabling force_key_frames for h264_qsv");
}
else