diff options
author | David Robillard <d@drobilla.net> | 2012-08-12 05:16:58 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-12 05:16:58 +0000 |
commit | 65a81eec8943dc0504b8b8755f9866ee4993372c (patch) | |
tree | 65ba6d09f13bee9c40fe5f82185174ce388134b0 /src/server/DuplexPort.cpp | |
parent | e49cb96073f514edbe1b7a9854b49c47af35463c (diff) | |
download | ingen-65a81eec8943dc0504b8b8755f9866ee4993372c.tar.gz ingen-65a81eec8943dc0504b8b8755f9866ee4993372c.tar.bz2 ingen-65a81eec8943dc0504b8b8755f9866ee4993372c.zip |
Remove message context cruft.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4668 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/DuplexPort.cpp')
-rw-r--r-- | src/server/DuplexPort.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/DuplexPort.cpp b/src/server/DuplexPort.cpp index c7b81dc8..bbfdbd11 100644 --- a/src/server/DuplexPort.cpp +++ b/src/server/DuplexPort.cpp @@ -49,15 +49,15 @@ DuplexPort::DuplexPort(BufferFactory& bufs, } bool -DuplexPort::get_buffers(Context& context, - BufferFactory& bufs, +DuplexPort::get_buffers(BufferFactory& bufs, Raul::Array<BufferRef>* buffers, - uint32_t poly) const + uint32_t poly, + bool real_time) const { if (_is_output) { - return InputPort::get_buffers(context, bufs, buffers, poly); + return InputPort::get_buffers(bufs, buffers, poly, real_time); } else { - return OutputPort::get_buffers(context, bufs, buffers, poly); + return OutputPort::get_buffers(bufs, buffers, poly, real_time); } } |