From 571cbb33901b2a6b6fbc6f311723bc9bc561e731 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 11 Aug 2012 02:13:56 +0000 Subject: Vectorizable (by GCC with -ftree-vectorize) mixing and Buffer::set_block(). Custom SSE accelerated peak detection when SSE is available at compile time. Less mixing overhead in general. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4651 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/JackDriver.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/server/JackDriver.cpp') diff --git a/src/server/JackDriver.cpp b/src/server/JackDriver.cpp index b3c2fc6c..3f6ed5c0 100644 --- a/src/server/JackDriver.cpp +++ b/src/server/JackDriver.cpp @@ -33,6 +33,7 @@ #include "raul/List.hpp" #include "raul/log.hpp" +#include "Buffer.hpp" #include "DuplexPort.hpp" #include "Engine.hpp" #include "JackDriver.hpp" @@ -403,7 +404,7 @@ JackDriver::_process_cb(jack_nframes_t nframes) _transport_state = jack_transport_query(_client, &_position); - _engine.process_context().locate(start_of_current_cycle, nframes, 0); + _engine.process_context().locate(start_of_current_cycle, nframes); // Read input for (Raul::List::iterator i = _ports.begin(); i != _ports.end(); ++i) -- cgit v1.2.1