diff options
Diffstat (limited to 'src/server/InputPort.cpp')
-rw-r--r-- | src/server/InputPort.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/InputPort.cpp b/src/server/InputPort.cpp index 901a409a..0ded3e5b 100644 --- a/src/server/InputPort.cpp +++ b/src/server/InputPort.cpp @@ -17,6 +17,7 @@ #include <cstdlib> #include <cassert> +#include "Buffer.hpp" #include "BufferFactory.hpp" #include "EdgeImpl.hpp" #include "Engine.hpp" @@ -194,7 +195,7 @@ InputPort::pre_process(Context& context) e->get_sources(context, v, srcs, max_num_srcs, num_srcs); } - mix(context, bufs().uris(), buffer(v).get(), srcs, num_srcs); + mix(context, buffer(v).get(), srcs, num_srcs); } } |