Use case insensitive contains (1)

Co-Authored-By: Bond-009 <bond.009@outlook.com>
pull/2099/head
cryptobank 5 years ago committed by Petr Janda
parent f18d3ed33b
commit 867b61025d

@ -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", StringComparison.OrdinalIgnoreCase))
{
if (!string.IsNullOrEmpty(videoDecoder) && videoDecoder.Contains("qsv"))
{

Loading…
Cancel
Save