fix SA1201 issue

This commit is contained in:
Paul Mulders 2024-08-05 13:22:24 +02:00
parent 0eb5897100
commit bc613b8344

View File

@ -168,6 +168,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
private readonly string _encoderPath;
private readonly Version _minFFmpegMultiThreadedCli = new Version(7, 0);
public EncoderValidator(ILogger logger, string encoderPath)
{
_logger = logger;
@ -477,8 +479,6 @@ namespace MediaBrowser.MediaEncoding.Encoder
return false;
}
private readonly Version _minFFmpegMultiThreadedCli = new Version(7, 0);
public bool CheckSupportedRuntimeKey(string keyDesc, Version? ffmpegVersion)
{
if (string.IsNullOrEmpty(keyDesc))