diff options
Diffstat (limited to 'src/libs/engine/OutputPort.hpp')
-rw-r--r-- | src/libs/engine/OutputPort.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libs/engine/OutputPort.hpp b/src/libs/engine/OutputPort.hpp index 07daf6b6..bd42f07d 100644 --- a/src/libs/engine/OutputPort.hpp +++ b/src/libs/engine/OutputPort.hpp @@ -49,9 +49,8 @@ public: : Port(parent, name, index, poly, type, buffer_size) {} - void pre_process(SampleCount nframes, FrameTime start, FrameTime end); - void process(ProcessContext& context, SampleCount nframes, FrameTime start, FrameTime end); - void post_process(SampleCount nframes, FrameTime start, FrameTime end); + void pre_process(ProcessContext& context); + void post_process(ProcessContext& context); virtual ~OutputPort() {} |