diff options
Diffstat (limited to 'src/libs/engine/DuplexPort.cpp')
-rw-r--r-- | src/libs/engine/DuplexPort.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/engine/DuplexPort.cpp b/src/libs/engine/DuplexPort.cpp index f0b138ed..6c195e87 100644 --- a/src/libs/engine/DuplexPort.cpp +++ b/src/libs/engine/DuplexPort.cpp @@ -54,7 +54,7 @@ DuplexPort::pre_process(SampleCount nframes, FrameTime start, FrameTime end) } void -DuplexPort::process(ProcessContext& events, SampleCount nframes, FrameTime start, FrameTime end) +DuplexPort::process(ProcessContext& context, SampleCount nframes, FrameTime start, FrameTime end) { } @@ -64,9 +64,9 @@ DuplexPort::post_process(SampleCount nframes, FrameTime start, FrameTime end) { // Think about it... - if (_is_output) - InputPort::pre_process(nframes, start, end); - else +// if (_is_output) +// InputPort::pre_process(nframes, start, end); +//else OutputPort::pre_process(nframes, start, end); } |