mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:28:23 +00:00
== null -> is null
This commit is contained in:
parent
d92e9ae85e
commit
18a311d32f
14 changed files with 17 additions and 17 deletions
|
|
@ -2692,7 +2692,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
string args = string.Empty;
|
||||
|
||||
// http://ffmpeg.org/ffmpeg-all.html#toc-Complex-filtergraphs-1
|
||||
if (state.VideoStream != null && videoProcessFilters.Contains("-filter_complex", StringComparison.Ordinal))
|
||||
if (state.VideoStream is not null && videoProcessFilters.Contains("-filter_complex", StringComparison.Ordinal))
|
||||
{
|
||||
int videoStreamIndex = FindIndex(state.MediaSource.MediaStreams, state.VideoStream);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue