summaryrefslogtreecommitdiff
path: root/muse2/synti/deicsonze/deicsonze.cpp
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-04-27 16:57:12 +0000
committerFlorian Jung <flo@windfisch.org>2011-04-27 16:57:12 +0000
commit0f7a7ab47a2a7742fba2ea6af980ee5d950b8c37 (patch)
tree34ce8136927d4ba5627df7dc40defdbc59e5d885 /muse2/synti/deicsonze/deicsonze.cpp
parent928081edaa0752e14577c36b6b595ab38079224a (diff)
parent499ccec21dd2ac636fb019c98a902c351b4ec165 (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/deicsonze.cpp')
-rw-r--r--muse2/synti/deicsonze/deicsonze.cpp15
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;