amend 649b9e92f, backport MB code

This commit is contained in:
Robin Gareus 2017-04-17 20:34:18 +02:00
parent 649b9e92ff
commit 515c0687b4

View File

@ -3568,13 +3568,16 @@ Route::roll (pframes_t nframes, framepos_t start_frame, framepos_t end_frame, in
return 0;
}
if (n_outputs().n_total() == 0) {
return 0;
}
//MB has its own signal path, regardless of I/O -- TODO handle !active for tracks & aux-busses)
if (!Profile->get_mixbus()) {
if (n_outputs().n_total() == 0) {
return 0;
}
if (!_active || n_inputs().n_total() == 0) {
silence_unlocked (nframes);
return 0;
if (!_active || n_inputs().n_total() == 0) {
silence_unlocked (nframes);
return 0;
}
}
framepos_t unused = 0;