From 55c0b112099d45455755ab0b74b47b8f8dec1c41 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Thu, 27 Feb 2014 15:04:24 -0700 Subject: [PATCH] Set default buffering time to 1000ms After a mac just boots up, it often takes about 700 milliseconds for audio devices to work on first use, so it would often have issues with the 700ms audio buffering time, and audio data would get cut off. Just increasing the buffering a little bit fixes the issue. --- obs/obs-app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/obs-app.cpp b/obs/obs-app.cpp index 52bfca9f0..fb4012676 100644 --- a/obs/obs-app.cpp +++ b/obs/obs-app.cpp @@ -99,7 +99,7 @@ bool OBSApp::InitGlobalConfigDefaults() config_set_default_uint(globalConfig, "Audio", "SampleRate", 44100); config_set_default_string(globalConfig, "Audio", "ChannelSetup", "Stereo"); - config_set_default_uint(globalConfig, "Audio", "BufferingTime", 700); + config_set_default_uint(globalConfig, "Audio", "BufferingTime", 1000); return true; } -- GitLab