mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
amend 649b9e92f, backport MB code
This commit is contained in:
parent
649b9e92ff
commit
515c0687b4
1 changed files with 9 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue