From 48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 8 Sep 2006 03:58:00 +0000 Subject: De-singleton-ified Engine Slight rework of Responder/ClientKey/ClientInterface for Requests git-svn-id: http://svn.drobilla.net/lad/ingen@119 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/TypedConnection.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libs/engine/TypedConnection.cpp') diff --git a/src/libs/engine/TypedConnection.cpp b/src/libs/engine/TypedConnection.cpp index daee10d9..a0cd01e6 100644 --- a/src/libs/engine/TypedConnection.cpp +++ b/src/libs/engine/TypedConnection.cpp @@ -63,7 +63,7 @@ template TypedConnection::~TypedConnection(); template void -TypedConnection::process(SampleCount nframes) +TypedConnection::process(SampleCount nframes, FrameTime start, FrameTime end) { // FIXME: nframes parameter not used assert(m_buffer_size == 1 || m_buffer_size == nframes); @@ -91,13 +91,13 @@ TypedConnection::process(SampleCount nframes) m_local_buffer->scale(1.0f/(float)src_port()->poly(), 0, m_buffer_size-1); } } -template void TypedConnection::process(SampleCount nframes); +template void TypedConnection::process(SampleCount nframes, FrameTime start, FrameTime end); // FIXME: MIDI mixing not implemented template <> void -TypedConnection::process(SampleCount nframes) +TypedConnection::process(SampleCount nframes, FrameTime start, FrameTime end) { } -- cgit v1.2.1