summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/DSSINode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/DSSINode.cpp')
-rw-r--r--src/libs/engine/DSSINode.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libs/engine/DSSINode.cpp b/src/libs/engine/DSSINode.cpp
index 5a23baba..58ff050d 100644
--- a/src/libs/engine/DSSINode.cpp
+++ b/src/libs/engine/DSSINode.cpp
@@ -165,7 +165,7 @@ DSSINode::has_midi_input() const
void
DSSINode::process(SampleCount nframes, FrameTime start, FrameTime end)
{
- NodeBase::process(nframes, start, end);
+ NodeBase::pre_process(nframes, start, end);
if (_dssi_descriptor->run_synth) {
convert_events();
@@ -181,6 +181,8 @@ DSSINode::process(SampleCount nframes, FrameTime start, FrameTime end)
} else {
LADSPANode::process(nframes, start, end);
}
+
+ NodeBase::post_process(nframes, start, end);
}