RemotePlugin: increased SHM_FIFO_SIZE again

As there are plugins whose parameter dumps are bigger than 64 KB
increased SHM_FIFO_SIZE to 512 KB.
This commit is contained in:
Tobias Doerffel
2012-12-09 17:25:59 +01:00
parent 60017ae6e3
commit c27c321778

View File

@@ -115,7 +115,7 @@ typedef int32_t key_t;
// sometimes we need to exchange bigger messages (e.g. for VST parameter dumps)
// so set a usable value here
const int SHM_FIFO_SIZE = 64000;
const int SHM_FIFO_SIZE = 512*1024;
// implements a FIFO inside a shared memory segment