summaryrefslogtreecommitdiff
path: root/libs/ardour/delivery.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/delivery.cc')
-rw-r--r--libs/ardour/delivery.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/ardour/delivery.cc b/libs/ardour/delivery.cc
index efdb4d9ad0..31337e7e83 100644
--- a/libs/ardour/delivery.cc
+++ b/libs/ardour/delivery.cc
@@ -479,6 +479,18 @@ Delivery::transport_stopped (framepos_t now)
}
}
+void
+Delivery::realtime_locate ()
+{
+ if (_output) {
+ PortSet& ports (_output->ports());
+
+ for (PortSet::iterator i = ports.begin(); i != ports.end(); ++i) {
+ (*i).realtime_locate ();
+ }
+ }
+}
+
gain_t
Delivery::target_gain ()
{