Add space between if statement and boolean expression

Co-Authored-By: Vasily <JustAMan@users.noreply.github.com>
pull/2099/head
cryptobank 5 years ago committed by GitHub
parent 75426d0004
commit 68edb9734d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -473,7 +473,7 @@ namespace MediaBrowser.Controller.MediaEncoding
var videoDecoder = GetHardwareAcceleratedVideoDecoder(state, encodingOptions); var videoDecoder = GetHardwareAcceleratedVideoDecoder(state, encodingOptions);
var outputVideoCodec = GetVideoEncoder(state, encodingOptions); var outputVideoCodec = GetVideoEncoder(state, encodingOptions);
if(encodingOptions.EnableHardwareEncoding && outputVideoCodec.Contains("qsv")) if (encodingOptions.EnableHardwareEncoding && outputVideoCodec.Contains("qsv"))
{ {
if (!string.IsNullOrEmpty(videoDecoder) && videoDecoder.Contains("qsv")) if (!string.IsNullOrEmpty(videoDecoder) && videoDecoder.Contains("qsv"))
{ {

Loading…
Cancel
Save