mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:28:23 +00:00
Add space between if statement and boolean expression
Co-Authored-By: Vasily <JustAMan@users.noreply.github.com>
This commit is contained in:
parent
75426d0004
commit
68edb9734d
1 changed files with 1 additions and 1 deletions
|
|
@ -473,7 +473,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
var videoDecoder = GetHardwareAcceleratedVideoDecoder(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"))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue