Browse Source

PD: audio output correction factor is x5

tags/v1.3.0
clwe max 4 years ago
parent
commit
572ae136f8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/LibPDEngine.cpp

+ 1
- 1
src/LibPDEngine.cpp View File

@@ -153,7 +153,7 @@ struct LibPDEngine : ScriptEngine {
//return samples to prototype
for (int s = 0; s < _pd_block_size; s++) {
for (int r = 0; r < rows; r++) {
block->outputs[r][s] = _output[s*rows+r] * 4;
block->outputs[r][s] = _output[s*rows+r] * 5;
// there is a correction multilpier, because libpd's output is too quiet(?)
}
}


Loading…
Cancel
Save