Increased the buffer size

This commit is contained in:
paulfd 2019-08-30 14:00:38 +02:00
parent bbe9a97837
commit 3098ca3b69

View file

@ -28,7 +28,7 @@ namespace sfz {
namespace config { namespace config {
constexpr float defaultSampleRate { 48000 }; constexpr float defaultSampleRate { 48000 };
constexpr int defaultSamplesPerBlock { 1024 }; constexpr int defaultSamplesPerBlock { 1024 };
constexpr int preloadSize { 8192 }; constexpr int preloadSize { 8192 * 4 };
constexpr int numChannels { 2 }; constexpr int numChannels { 2 };
constexpr int numVoices { 64 }; constexpr int numVoices { 64 };
constexpr int numLoadingThreads { 4 }; constexpr int numLoadingThreads { 4 };