summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/Port.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/Port.h')
-rw-r--r--src/libs/engine/Port.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libs/engine/Port.h b/src/libs/engine/Port.h
index b42231fe..6b3c20e8 100644
--- a/src/libs/engine/Port.h
+++ b/src/libs/engine/Port.h
@@ -52,7 +52,9 @@ public:
Buffer* buffer(size_t voice) const { return _buffers.at(voice); }
/** Called once per process cycle */
- virtual void process(SampleCount nframes, FrameTime start, FrameTime end);
+ virtual void pre_process(SampleCount nframes, FrameTime start, FrameTime end) = 0;
+ virtual void process(SampleCount nframes, FrameTime start, FrameTime end) {}
+ virtual void post_process(SampleCount nframes, FrameTime start, FrameTime end) {};
/** Empty buffer contents completely (ie silence) */
virtual void clear_buffers();