summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-09-20 23:12:03 +0200
committerRobin Gareus <robin@gareus.org>2017-09-29 05:03:48 +0200
commitabb7cb90e703ccce72618b2a910112a8d25b5572 (patch)
treeb5559073f4a865eda4ea749716a5d9e19b4e9542 /libs/ardour/route.cc
parent2fa1f1b0b30b810bbb12ee428bfd7b532cecb5aa (diff)
NO-OP: Whitespace
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc16
1 files changed, 7 insertions, 9 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 4eae23bd19..a0d6676b22 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -3346,19 +3346,17 @@ Route::feeds_according_to_graph (boost::shared_ptr<Route> other)
void
Route::non_realtime_transport_stop (samplepos_t now, bool flush)
{
- {
- Glib::Threads::RWLock::ReaderLock lm (_processor_lock);
-
- Automatable::non_realtime_transport_stop (now, flush);
+ Glib::Threads::RWLock::ReaderLock lm (_processor_lock);
- for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
+ Automatable::non_realtime_transport_stop (now, flush);
- if (!_have_internal_generator && (Config->get_plugins_stop_with_transport() && flush)) {
- (*i)->flush ();
- }
+ for (ProcessorList::iterator i = _processors.begin(); i != _processors.end(); ++i) {
- (*i)->non_realtime_transport_stop (now, flush);
+ if (!_have_internal_generator && (Config->get_plugins_stop_with_transport() && flush)) {
+ (*i)->flush ();
}
+
+ (*i)->non_realtime_transport_stop (now, flush);
}
}