summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-22 04:25:07 +0200
committerRobin Gareus <robin@gareus.org>2017-07-22 04:25:07 +0200
commitf756dc69f41c6950f5c573401ebbd767be493f01 (patch)
tree207cc86427977df3c974465c6b7b5dfa9e4d83d5
parent038c391d55ba3f78080c86ab09c3ad909f1b427b (diff)
NO-OP: Consistent API name
-rw-r--r--libs/ardour/ardour/automatable.h2
-rw-r--r--libs/ardour/automatable.cc2
-rw-r--r--libs/ardour/route.cc4
-rw-r--r--libs/ardour/session_transport.cc8
4 files changed, 8 insertions, 8 deletions
diff --git a/libs/ardour/ardour/automatable.h b/libs/ardour/ardour/automatable.h
index bdc0edf4da..736992d3d0 100644
--- a/libs/ardour/ardour/automatable.h
+++ b/libs/ardour/ardour/automatable.h
@@ -83,7 +83,7 @@ public:
virtual bool find_next_event (double start, double end, Evoral::ControlEvent& ev, bool only_active = true) const;
void clear_controls ();
- virtual void transport_located (framepos_t now);
+ virtual void non_realtime_locate (framepos_t now);
virtual void transport_stopped (framepos_t now);
virtual void automation_run (framepos_t, pframes_t);
diff --git a/libs/ardour/automatable.cc b/libs/ardour/automatable.cc
index 908ca18137..aa0dd5edf7 100644
--- a/libs/ardour/automatable.cc
+++ b/libs/ardour/automatable.cc
@@ -338,7 +338,7 @@ Automatable::protect_automation ()
}
void
-Automatable::transport_located (framepos_t now)
+Automatable::non_realtime_locate (framepos_t now)
{
for (Controls::iterator li = controls().begin(); li != controls().end(); ++li) {
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index ce8477579f..1ef3badc2c 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -4774,7 +4774,7 @@ void
Route::non_realtime_locate (framepos_t pos)
{
if (_pannable) {
- _pannable->transport_located (pos);
+ _pannable->non_realtime_locate (pos);
}
if (_delayline.get()) {
@@ -4786,7 +4786,7 @@ Route::non_realtime_locate (framepos_t pos)
Glib::Threads::RWLock::ReaderLock lm (_processor_lock);
for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
- (*i)->transport_located (pos);
+ (*i)->non_realtime_locate (pos);
}
}
_roll_delay = _initial_delay;
diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc
index 4ee2945579..af75e30b1f 100644
--- a/libs/ardour/session_transport.cc
+++ b/libs/ardour/session_transport.cc
@@ -456,7 +456,7 @@ Session::butler_transport_work ()
}
VCAList v = _vca_manager->vcas ();
for (VCAList::const_iterator i = v.begin(); i != v.end(); ++i) {
- (*i)->transport_located (_transport_frame);
+ (*i)->non_realtime_locate (_transport_frame);
}
}
@@ -508,7 +508,7 @@ Session::butler_transport_work ()
}
VCAList v = _vca_manager->vcas ();
for (VCAList::const_iterator i = v.begin(); i != v.end(); ++i) {
- (*i)->transport_located (_transport_frame);
+ (*i)->non_realtime_locate (_transport_frame);
}
}
}
@@ -618,7 +618,7 @@ Session::non_realtime_locate ()
{
VCAList v = _vca_manager->vcas ();
for (VCAList::const_iterator i = v.begin(); i != v.end(); ++i) {
- (*i)->transport_located (_transport_frame);
+ (*i)->non_realtime_locate (_transport_frame);
}
}
@@ -904,7 +904,7 @@ Session::non_realtime_stop (bool abort, int on_entry, bool& finished)
{
VCAList v = _vca_manager->vcas ();
for (VCAList::const_iterator i = v.begin(); i != v.end(); ++i) {
- (*i)->transport_located (_transport_frame);
+ (*i)->non_realtime_locate (_transport_frame);
}
}