From f3285e2cfa7c5785fea7c1d514a4cef9f10d1041 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 13 Jul 2014 02:59:34 -0700 Subject: [PATCH] Fix bug where x264 buffer size was always 1000 --- obs/window-basic-main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/obs/window-basic-main.cpp b/obs/window-basic-main.cpp index 43a67f936..e221aa477 100644 --- a/obs/window-basic-main.cpp +++ b/obs/window-basic-main.cpp @@ -1753,6 +1753,7 @@ void OBSBasic::SetupEncoders() "ABitrate"); obs_data_setint(x264Settings, "bitrate", videoBitrate); + obs_data_setint(x264Settings, "buffer_size", videoBitrate); obs_data_setbool(x264Settings, "cbr", true); obs_data_setint(aacSettings, "bitrate", audioBitrate);