summaryrefslogtreecommitdiff
path: root/libs/ardour/send.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/send.cc')
-rw-r--r--libs/ardour/send.cc22
1 files changed, 6 insertions, 16 deletions
diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc
index 3d44070e68..a4db60fc68 100644
--- a/libs/ardour/send.cc
+++ b/libs/ardour/send.cc
@@ -147,22 +147,12 @@ Send::set_state(const XMLNode& node)
bool
Send::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
{
- if (_output->n_ports() == ChanCount::ZERO) {
-
- /* not configured yet, we can support anything */
-
- out = in;
- return true; /* we can support anything the first time we're asked */
-
- } else {
-
- /* for a send, processor input corresponds to IO output */
-
- out = in;
- return true;
- }
-
- return false;
+ /* sends have no impact at all on the channel configuration of the
+ streams passing through the route. so, out == in.
+ */
+
+ out = in;
+ return true;
}
/** Set up the XML description of a send so that its name is unique.