From 70b939da4f9d4097160e32f2373a7a5ff8f4957f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 30 Jan 2009 07:40:13 +0000 Subject: first pass at internal sends. this is a very tentative work in progress, and it is possible that major changes may follow in the near future. it is certainly not complete, but the fundamental changes to Port/Buffer operation merit a commit at this point git-svn-id: svn://localhost/ardour2/branches/3.0@4464 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/io_processor.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libs/ardour/io_processor.cc') diff --git a/libs/ardour/io_processor.cc b/libs/ardour/io_processor.cc index 08530b924c..fb27ba6f54 100644 --- a/libs/ardour/io_processor.cc +++ b/libs/ardour/io_processor.cc @@ -43,10 +43,12 @@ using namespace ARDOUR; using namespace PBD; IOProcessor::IOProcessor (Session& s, const string& name, Placement p, - int input_min, int input_max, - int output_min, int output_max) + int input_min, int input_max, + int output_min, int output_max, + DataType dtype, + bool public_ports) : Processor(s, name, p) - , _io(new IO(s, name, input_min, input_max, output_min, output_max)) + , _io (new IO(s, name, input_min, input_max, output_min, output_max, dtype, public_ports)) { _active = false; _sort_key = 0; -- cgit v1.2.3