summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-06 02:01:17 +0200
committerRobin Gareus <robin@gareus.org>2016-04-06 02:01:17 +0200
commit021a52cc7562aa1c577519c6564ecf55619dba05 (patch)
tree0bd36c2ec7634247177de45c6d4093e8dc8c6827 /libs/ardour/route.cc
parent45019517d7d01d4af974bf0c9ab0a11dec233abb (diff)
Route API to query all outputs (incl sends) and graph-feeds
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc21
1 files changed, 21 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 01ab80f9dc..ed23c0e23f 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -3628,6 +3628,21 @@ Route::all_inputs () const
return ios;
}
+IOVector
+Route::all_outputs () const
+{
+ IOVector ios;
+ // _output is included via Delivery
+ Glib::Threads::RWLock::ReaderLock lm (_processor_lock);
+ for (ProcessorList::const_iterator r = _processors.begin(); r != _processors.end(); ++r) {
+ boost::shared_ptr<IOProcessor> iop = boost::dynamic_pointer_cast<IOProcessor>(*r);
+ if (iop != 0 && iop->output()) {
+ ios.push_back (iop->output());
+ }
+ }
+ return ios;
+}
+
bool
Route::direct_feeds_according_to_reality (boost::shared_ptr<Route> other, bool* via_send_only)
{
@@ -3679,6 +3694,12 @@ Route::direct_feeds_according_to_graph (boost::shared_ptr<Route> other, bool* vi
return _session._current_route_graph.has (shared_from_this (), other, via_send_only);
}
+bool
+Route::feeds_according_to_graph (boost::shared_ptr<Route> other)
+{
+ return _session._current_route_graph.feeds (shared_from_this (), other);
+}
+
/** Called from the (non-realtime) butler thread when the transport is stopped */
void
Route::nonrealtime_handle_transport_stopped (bool /*abort_ignored*/, bool /*did_locate*/, bool can_flush_processors)