From 65da85d288240f612d7f53659c498457873f4abc Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 30 Mar 2020 23:56:00 +0100 Subject: [PATCH] Increase default size of plugin RT data pool 128 is not even enough for all-notes-off plus random events 512 seems a safe number, for now Signed-off-by: falkTX --- source/backend/plugin/CarlaPluginInternal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/backend/plugin/CarlaPluginInternal.cpp b/source/backend/plugin/CarlaPluginInternal.cpp index 044432f11..ee9668152 100644 --- a/source/backend/plugin/CarlaPluginInternal.cpp +++ b/source/backend/plugin/CarlaPluginInternal.cpp @@ -580,7 +580,7 @@ void CarlaPlugin::ProtectedData::Latency::recreateBuffers(const uint32_t newChan // ProtectedData::PostRtEvents CarlaPlugin::ProtectedData::PostRtEvents::PostRtEvents() noexcept - : dataPool(128, 128), + : dataPool(512, 512), data(dataPool), dataPendingRT(dataPool), dataMutex(),