mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
Use case insensitive contains (4)
Co-Authored-By: Bond-009 <bond.009@outlook.com>
This commit is contained in:
parent
d0febd6c37
commit
bafcadbe58
1 changed files with 1 additions and 1 deletions
|
|
@ -1969,7 +1969,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
|
||||
// If we are software decoding, and hardware encoding
|
||||
if (string.Equals(outputVideoCodec, "h264_qsv", StringComparison.OrdinalIgnoreCase)
|
||||
&& (string.IsNullOrEmpty(videoDecoder) || !videoDecoder.Contains("qsv")))
|
||||
&& (string.IsNullOrEmpty(videoDecoder) || !videoDecoder.Contains("qsv", StringComparison.OrdinalIgnoreCase)))
|
||||
{
|
||||
filters.Add("format=nv12|qsv");
|
||||
filters.Add("hwupload=extra_hw_frames=64");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue