From 16472b4ef9c1ab07acf5c4fb700c202704477d97 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 29 Mar 2020 18:09:48 +0200 Subject: [PATCH] Reduce the max number of buffers --- src/sfizz/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Config.h b/src/sfizz/Config.h index 56bfd12c..51ac5c1b 100644 --- a/src/sfizz/Config.h +++ b/src/sfizz/Config.h @@ -28,7 +28,7 @@ namespace config { constexpr float defaultSampleRate { 48000 }; constexpr int defaultSamplesPerBlock { 1024 }; constexpr int maxBlockSize { 8192 }; - constexpr int bufferPoolSize { 16 }; + constexpr int bufferPoolSize { 8 }; constexpr int stereoBufferPoolSize { 4 }; constexpr int indexBufferPoolSize { 2 }; constexpr int preloadSize { 8192 };