summaryrefslogtreecommitdiff
path: root/libs/ardour/io.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-06-10 13:59:06 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-06-10 13:59:06 +0000
commitff26317d4f7904c071d7ecfb96fd84e71728f6d0 (patch)
tree245b8f3ad569b09de84110eae6dce6297ac5d4b8 /libs/ardour/io.cc
parentcc8598b0712dfc756fd62f002b1fa1ea0e3cda25 (diff)
fix mute & solo behaviour mostly ; remove some verbose debugging output
git-svn-id: svn://localhost/ardour2/branches/3.0@5153 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/io.cc')
-rw-r--r--libs/ardour/io.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index 4a762c8eb7..014c005677 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -83,7 +83,6 @@ IO::IO (Session& s, const string& name, Direction dir, DataType default_type)
_active = true;
pending_state_node = 0;
setup_bundles ();
- cerr << "+++ IO created with name = " << _name << endl;
}
IO::IO (Session& s, const XMLNode& node, DataType dt)
@@ -95,9 +94,7 @@ IO::IO (Session& s, const XMLNode& node, DataType dt)
pending_state_node = 0;
set_state (node);
-
setup_bundles ();
- cerr << "+++ IO created from XML with name = " << _name << endl;
}
IO::~IO ()
@@ -429,11 +426,7 @@ IO::ensure_ports (ChanCount count, bool clear, bool lockit, void* src)
{
bool changed = false;
- cerr << "Ensure that IO " << _name << '/' << (_direction == Input ? "input" : "output")
- << " has " << count << endl;
-
if (count == n_ports() && !clear) {
- cerr << "\talready has " << n_ports() << endl;
return 0;
}
@@ -451,8 +444,6 @@ IO::ensure_ports (ChanCount count, bool clear, bool lockit, void* src)
_session.set_dirty ();
}
- cerr << "\t@" << this << " established with " << n_ports() << endl;
-
return 0;
}
@@ -743,8 +734,6 @@ IO::create_ports (const XMLNode& node)
get_port_counts (node, n, c);
- cerr << _name << " got " << n << " from XML node" << endl;
-
if (ensure_ports (n, true, true, this)) {
error << string_compose(_("%1: cannot create I/O ports"), _name) << endmsg;
return -1;