The -autoscale option was added in FFmpeg 4.4 (#8813)

This commit is contained in:
Bond-009 2022-11-30 21:00:39 +01:00 committed by GitHub
parent fea01a1ccb
commit da5913aa30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -977,7 +977,7 @@ namespace MediaBrowser.Controller.MediaEncoding
// Disable auto inserted SW scaler for HW decoders in case of changed resolution.
var isSwDecoder = string.IsNullOrEmpty(GetHardwareVideoDecoder(state, options));
if (!isSwDecoder)
if (!isSwDecoder && _mediaEncoder.EncoderVersion >= new Version(4, 4))
{
arg.Append(" -autoscale 0");
}