From 53e510b87d93b2000b4827b7c2cc81817aa04df0 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Thu, 8 Sep 2022 20:35:18 -0700 Subject: [PATCH] videoparams: change auto-divider target resolution --- app/render/videoparams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/render/videoparams.cpp b/app/render/videoparams.cpp index 14474d49c..34f93c74c 100644 --- a/app/render/videoparams.cpp +++ b/app/render/videoparams.cpp @@ -126,7 +126,7 @@ VideoParams::VideoParams(int width, int height, const rational &time_base, Forma int VideoParams::generate_auto_divider(qint64 width, qint64 height) { - const int target_res = 1920*1080; + const int target_res = 1280*720; qint64 megapixels = width * height;