From b59584b387c4b77d09ba4c791eb711597f67c8c8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 8 Apr 2007 08:11:59 +0000 Subject: MIDI patching fixes (clean disconnecting). git-svn-id: http://svn.drobilla.net/lad/ingen@416 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/DSSINode.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/libs/engine/DSSINode.cpp') 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); } -- cgit v1.2.1