summaryrefslogtreecommitdiff
path: root/libs/ardour/io_processor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-07-17 13:59:46 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-07-17 13:59:46 +0000
commitb621b28fce4942fb4505854482cddec1545f5c0f (patch)
tree8e4895d32b519a666adaa9950fb6d7e905ffa2c3 /libs/ardour/io_processor.cc
parentc677de4816f86c11feb8cf92bbe75af28437d5ac (diff)
make it possible to (and actually do) name insert and send ports as "return" and "send" rather than "in" and "out" (#5012)
git-svn-id: svn://localhost/ardour2/branches/3.0@13052 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/io_processor.cc')
-rw-r--r--libs/ardour/io_processor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/io_processor.cc b/libs/ardour/io_processor.cc
index fd47e1c06c..d23afce612 100644
--- a/libs/ardour/io_processor.cc
+++ b/libs/ardour/io_processor.cc
@@ -43,7 +43,7 @@ namespace ARDOUR { class Session; }
/* create an IOProcessor that proxies to a new IO object */
IOProcessor::IOProcessor (Session& s, bool with_input, bool with_output,
- const string& proc_name, const string io_name, DataType dtype)
+ const string& proc_name, const string io_name, DataType dtype, bool sendish)
: Processor(s, proc_name)
{
/* these are true in this constructor whether we actually create the associated
@@ -54,11 +54,11 @@ IOProcessor::IOProcessor (Session& s, bool with_input, bool with_output,
_own_output = true;
if (with_input) {
- _input.reset (new IO(s, io_name.empty() ? proc_name : io_name, IO::Input, dtype));
+ _input.reset (new IO(s, io_name.empty() ? proc_name : io_name, IO::Input, dtype, sendish));
}
if (with_output) {
- _output.reset (new IO(s, io_name.empty() ? proc_name : io_name, IO::Output, dtype));
+ _output.reset (new IO(s, io_name.empty() ? proc_name : io_name, IO::Output, dtype, sendish));
}
}