From 3098ca3b6929df7ed4193fd938da8bb094aa6c2f Mon Sep 17 00:00:00 2001 From: paulfd Date: Fri, 30 Aug 2019 14:00:38 +0200 Subject: [PATCH] Increased the buffer size --- sources/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Config.h b/sources/Config.h index ea280f56..5879a8f9 100644 --- a/sources/Config.h +++ b/sources/Config.h @@ -28,7 +28,7 @@ namespace sfz { namespace config { constexpr float defaultSampleRate { 48000 }; constexpr int defaultSamplesPerBlock { 1024 }; - constexpr int preloadSize { 8192 }; + constexpr int preloadSize { 8192 * 4 }; constexpr int numChannels { 2 }; constexpr int numVoices { 64 }; constexpr int numLoadingThreads { 4 };