Backport pull request #12390 from jellyfin/release-10.9.z
fix SA1201 issue
Original-merge: 3f3145600c
Merged-by: nielsvanvelzen <nielsvanvelzen@users.noreply.github.com>
Backported-by: Bond_009 <bond.009@outlook.com>
This commit is contained in:
parent
7ee9c9b7a0
commit
21f1813d82
|
@ -171,6 +171,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||||
|
|
||||||
private readonly string _encoderPath;
|
private readonly string _encoderPath;
|
||||||
|
|
||||||
|
private readonly Version _minFFmpegMultiThreadedCli = new Version(7, 0);
|
||||||
|
|
||||||
public EncoderValidator(ILogger logger, string encoderPath)
|
public EncoderValidator(ILogger logger, string encoderPath)
|
||||||
{
|
{
|
||||||
_logger = logger;
|
_logger = logger;
|
||||||
|
@ -480,8 +482,6 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private readonly Version _minFFmpegMultiThreadedCli = new Version(7, 0);
|
|
||||||
|
|
||||||
public bool CheckSupportedRuntimeKey(string keyDesc, Version? ffmpegVersion)
|
public bool CheckSupportedRuntimeKey(string keyDesc, Version? ffmpegVersion)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrEmpty(keyDesc))
|
if (string.IsNullOrEmpty(keyDesc))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user