Browse Source

Add 256 extra bytes to the requested buffer size in lv2 plugins

tags/1.9.6
falkTX 10 years ago
parent
commit
3de7a9b008
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/backend/plugin/CarlaPluginLV2.cpp

+ 1
- 1
source/backend/plugin/CarlaPluginLV2.cpp View File

@@ -1535,7 +1535,7 @@ public:
aIns = aOuts = cvIns = cvOuts = params = 0;
LinkedList<uint> evIns, evOuts;

const uint32_t eventBufferSize(static_cast<uint32_t>(fLv2Options.sequenceSize));
const uint32_t eventBufferSize(static_cast<uint32_t>(fLv2Options.sequenceSize)+0xff);

bool forcedStereoIn, forcedStereoOut;
forcedStereoIn = forcedStereoOut = false;


Loading…
Cancel
Save