13
0

limit bounce processing size (fixes crashes in plugins)

compare to LV2_BUF_SIZE__maxBlockLength
This commit is contained in:
Robin Gareus 2015-08-12 18:59:45 +02:00
parent 59a8fc9e64
commit 4332c5e6ca

View File

@ -135,7 +135,7 @@ PBD::Signal0<void> Session::FeedbackDetected;
PBD::Signal0<void> Session::SuccessfulGraphSort;
PBD::Signal2<void,std::string,std::string> Session::VersionMismatch;
const framecnt_t Session::bounce_chunk_size = 65536;
const framecnt_t Session::bounce_chunk_size = 8192;
static void clean_up_session_event (SessionEvent* ev) { delete ev; }
const SessionEvent::RTeventCallback Session::rt_cleanup (clean_up_session_event);