summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/InputPort.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/InputPort.hpp')
-rw-r--r--src/libs/engine/InputPort.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libs/engine/InputPort.hpp b/src/libs/engine/InputPort.hpp
index a34ef394..ca62470b 100644
--- a/src/libs/engine/InputPort.hpp
+++ b/src/libs/engine/InputPort.hpp
@@ -56,9 +56,8 @@ public:
typedef Raul::List<Connection*> Connections;
const Connections& connections() { return _connections; }
- 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);
bool is_connected() const { return (_connections.size() > 0); }
bool is_connected_to(const OutputPort* port) const;