summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-04-12 21:34:14 +0200
committerRobin Gareus <robin@gareus.org>2019-04-12 21:37:51 +0200
commit4199156263148cc5af4d840c0e04ad267958877a (patch)
tree5464efa7c5d94aab36bb0ef9781bee2a43751299 /libs/ardour/route.cc
parent5c94bd00b5897050371f807b93e73baa76581417 (diff)
More Ardour/Mixbus codebase unification
Note Presentation-Info bits used by Mixbus to prevent conflicts when sharing sessions.
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 8f1918ed4c..5b43300d3b 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -1390,6 +1390,11 @@ Route::is_internal_processor (boost::shared_ptr<Processor> p) const
if (p == _amp || p == _meter || p == _main_outs || p == _delayline || p == _trim || p == _polarity) {
return true;
}
+#ifdef MIXBUS
+ if (p == _ch_pre || p == _ch_post || p == _ch_eq || p == _ch_comp) {
+ return true;
+ }
+#endif
return false;
}