summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/route.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-17 14:01:09 +0200
committerRobin Gareus <robin@gareus.org>2016-04-17 14:01:09 +0200
commitbb090c0012340b637508e0930376b3d5afba5f5c (patch)
treed641fb6e6945f51ad39f112a37d4838e5b6d30f0 /libs/ardour/ardour/route.h
parent514765631b67080432faad5850528b720edab2b6 (diff)
add self-removing Sends (remove on disconnect)
The idea is to dynamically add/remove sends for feeding a sidechain and re-use all existing "External Send" infrastructure in particular latency compensation.
Diffstat (limited to 'libs/ardour/ardour/route.h')
-rw-r--r--libs/ardour/ardour/route.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index c8f6005872..b8060f059d 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -836,6 +836,10 @@ class LIBARDOUR_API Route : public SessionObject, public Automatable, public Rou
void output_change_handler (IOChange, void *src);
void sidechain_change_handler (IOChange, void *src);
+ void processor_selfdestruct (boost::weak_ptr<Processor>);
+ std::vector<boost::weak_ptr<Processor> > selfdestruct_sequence;
+ Glib::Threads::Mutex selfdestruct_lock;
+
bool input_port_count_changing (ChanCount);
bool output_port_count_changing (ChanCount);