summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-02-20 01:42:26 +0100
committerRobin Gareus <robin@gareus.org>2020-02-20 01:57:07 +0100
commit4337e2b0543c2e2183ca3c87caf924e247cd6213 (patch)
treec334083f5a409e7caa9ac8917e3ced4f20b4334c
parent52f88f68145fb07a9f30eacbb5d2ea7f08a5ccde (diff)
NO-OP: remove old comment and debug code
-rw-r--r--libs/ardour/route.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 4889c249a2..245c598a07 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -462,26 +462,6 @@ Route::process_output_buffers (BufferSet& bufs,
for (ProcessorList::const_iterator i = _processors.begin(); i != _processors.end(); ++i) {
- /* TODO check for split cycles here.
- *
- * start_frame, end_frame is adjusted by latency and may
- * cross loop points.
- */
-
-#ifndef NDEBUG
- /* if it has any inputs, make sure they match */
- if (boost::dynamic_pointer_cast<UnknownProcessor> (*i) == 0 && (*i)->input_streams() != ChanCount::ZERO) {
- if (bufs.count() != (*i)->input_streams()) {
- DEBUG_TRACE (
- DEBUG::Processors, string_compose (
- "input port mismatch %1 bufs = %2 input for %3 = %4\n",
- _name, bufs.count(), (*i)->name(), (*i)->input_streams()
- )
- );
- }
- }
-#endif
-
bool re_inject_oob_data = false;
if ((*i) == _disk_reader) {
/* Well now, we've made it past the disk-writer and to the disk-reader.