Browse Source

Fix build

Signed-off-by: falkTX <falktx@falktx.com>
fix-audiofile-buffering
falkTX 1 year ago
parent
commit
0c586b5c41
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      source/backend/plugin/CarlaPluginVST3.cpp

+ 2
- 1
source/backend/plugin/CarlaPluginVST3.cpp View File

@@ -3051,8 +3051,9 @@ public:

} // End of Post-processing
#else // BUILD_BRIDGE_ALTERNATIVE_ARCH
for (uint32_t i=0; i < pData->audioOut.count; ++i, ++j)
for (uint32_t i=0; i < pData->audioOut.count; ++i)
carla_copyFloats(outBuffer[i] + timeOffset, fAudioAndCvOutBuffers[i] + timeOffset, frames);

for (uint32_t i=0, j=pData->audioOut.count; i < pData->cvOut.count; ++i, ++j)
carla_copyFloats(cvOut[i] + timeOffset, fAudioAndCvOutBuffers[j] + timeOffset, frames);
#endif


Loading…
Cancel
Save