Disable autoenc for GIF output

This commit is contained in:
n00mkrad
2021-12-27 22:58:19 +01:00
parent 3bb3cf9596
commit 5027a61af6

View File

@@ -294,6 +294,12 @@ namespace Flowframes.Main
return false; return false;
} }
if(current.outMode == I.OutMode.VidGif)
{
Logger.Log($"Not Using AutoEnc: Using GIF output", true);
return false;
}
if (stepByStep && !Config.GetBool(Config.Key.sbsAllowAutoEnc)) if (stepByStep && !Config.GetBool(Config.Key.sbsAllowAutoEnc))
{ {
Logger.Log($"Not Using AutoEnc: Using step-by-step mode, but 'sbsAllowAutoEnc' is false", true); Logger.Log($"Not Using AutoEnc: Using step-by-step mode, but 'sbsAllowAutoEnc' is false", true);