Reduce the max number of buffers

This commit is contained in:
Paul Ferrand 2020-03-29 18:09:48 +02:00
parent 8ed3d16b8c
commit 16472b4ef9

View file

@ -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 };