From 90f7a0823714f7ddc1cde669bf1b9cb6de05873a Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Fri, 18 Nov 2022 18:45:31 -0500 Subject: [PATCH] UI: Change Simple Output NVENC default preset to P5 To avoid the user having lookahead enabled with no way to disable it, change the Simple Output Mode NVENC Preset from P6 to P5. Follow up to 8806738a04a651b147aff68fbddfb688c8d179db. --- UI/window-basic-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 98f6ad614..3c5e22fc2 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -1399,7 +1399,7 @@ bool OBSBasic::InitBasicConfigDefaults() config_set_default_string(basicConfig, "SimpleOutput", "Preset", "veryfast"); config_set_default_string(basicConfig, "SimpleOutput", "NVENCPreset2", - "p6"); + "p5"); config_set_default_string(basicConfig, "SimpleOutput", "RecQuality", "Stream"); config_set_default_bool(basicConfig, "SimpleOutput", "RecRB", false);