diff options
author | Florian Jung <flo@windfisch.org> | 2011-04-27 16:57:12 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-04-27 16:57:12 +0000 |
commit | 0f7a7ab47a2a7742fba2ea6af980ee5d950b8c37 (patch) | |
tree | 34ce8136927d4ba5627df7dc40defdbc59e5d885 /muse2/synti/deicsonze | |
parent | 928081edaa0752e14577c36b6b595ab38079224a (diff) | |
parent | 499ccec21dd2ac636fb019c98a902c351b4ec165 (diff) |
32-notes are now fully supported (also 32-rests are supported now)
corrected a bug
updated AUTHORS
merged with trunk
Diffstat (limited to 'muse2/synti/deicsonze')
-rw-r--r-- | muse2/synti/deicsonze/deicsonze.cpp | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/muse2/synti/deicsonze/deicsonze.cpp b/muse2/synti/deicsonze/deicsonze.cpp index 62abed5d..1da9fbc4 100644 --- a/muse2/synti/deicsonze/deicsonze.cpp +++ b/muse2/synti/deicsonze/deicsonze.cpp @@ -4316,10 +4316,7 @@ void DeicsOnze::process(float** buffer, int offset, int n) { if(_global.filter) _chorusFilter->process(tempOutputChorus[0], tempOutputChorus[1], n); //apply Chorus - ///_pluginIChorus->apply(n, 2, tempInputChorus, tempOutputChorus); - _pluginIChorus->connect(2, tempInputChorus, tempOutputChorus); - _pluginIChorus->apply(n); - + _pluginIChorus->apply(n, 2, tempInputChorus, tempOutputChorus); for(int i = 0; i < n; i++) { leftOutput[i] += tempOutputChorus[0][i] * _global.chorusReturn * _global.masterVolume; @@ -4333,10 +4330,7 @@ void DeicsOnze::process(float** buffer, int offset, int n) { if(_global.filter) _reverbFilter->process(tempOutputReverb[0], tempOutputReverb[1], n); //apply Reverb - ///_pluginIReverb->apply(n, 2, tempInputReverb, tempOutputReverb); - _pluginIReverb->connect(2, tempInputReverb, tempOutputReverb); - _pluginIReverb->apply(n); - + _pluginIReverb->apply(n, 2, tempInputReverb, tempOutputReverb); for(int i = 0; i < n; i++) { leftOutput[i] += tempOutputReverb[0][i] * _global.reverbReturn * _global.masterVolume; @@ -4350,10 +4344,7 @@ void DeicsOnze::process(float** buffer, int offset, int n) { if(_global.filter) _delayFilter->process(tempOutputDelay[0], tempOutputDelay[1], n); //apply Delay - ///_pluginIDelay->apply(n, 2, tempInputDelay, tempOutputDelay); - _pluginIDelay->connect(2, tempInputDelay, tempOutputDelay); - _pluginIDelay->apply(n); - + _pluginIDelay->apply(n, 2, tempInputDelay, tempOutputDelay); for(int i = 0; i < n; i++) { leftOutput[i] += tempOutputDelay[0][i] * _global.delayReturn * _global.masterVolume; |