NO-OP: remove old comment and debug code

This commit is contained in:
Robin Gareus 2020-02-20 01:42:26 +01:00
parent 52f88f6814
commit 4337e2b054
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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.