summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-04-17 20:34:18 +0200
committerRobin Gareus <robin@gareus.org>2017-04-17 20:34:18 +0200
commit515c0687b451b89408e69d2adc3579c2845f28fa (patch)
tree42a360b9052719768eea6570a49415452aba2dfc /libs
parent649b9e92ffc399d4b1f6999e2e4f1f447af324ef (diff)
amend 649b9e92f, backport MB code
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/route.cc15
1 files changed, 9 insertions, 6 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 42731d39f5..765a62e3fd 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -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;