mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-20 02:12:36 +01:00
fix SA1201 issue
This commit is contained in:
parent
0eb5897100
commit
bc613b8344
1 changed files with 2 additions and 2 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue