summaryrefslogtreecommitdiff
path: root/libs/ardour/audioengine.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-10-30 15:58:36 +0100
committerRobin Gareus <robin@gareus.org>2017-10-30 16:31:38 +0100
commit471644c59db05ed5b73253e545ef20cdd3d58fd8 (patch)
tree3925356ba2dd44e366b3480df4bed4798f467eaf /libs/ardour/audioengine.cc
parentfba0fce4416578de29b7701cf4d400399d44ceff (diff)
Parallel execution of cycle-start/end
Diffstat (limited to 'libs/ardour/audioengine.cc')
-rw-r--r--libs/ardour/audioengine.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/audioengine.cc b/libs/ardour/audioengine.cc
index da512cc51d..1c0fcbf138 100644
--- a/libs/ardour/audioengine.cc
+++ b/libs/ardour/audioengine.cc
@@ -372,7 +372,7 @@ AudioEngine::process_callback (pframes_t nframes)
/* tell all Ports that we're starting a new cycle */
- PortManager::cycle_start (nframes);
+ PortManager::cycle_start (nframes, _session);
/* test if we are freewheeling and there are freewheel signals connected.
* ardour should act normally even when freewheeling unless /it/ is
@@ -398,7 +398,7 @@ AudioEngine::process_callback (pframes_t nframes)
}
if (_freewheeling) {
- PortManager::cycle_end (nframes);
+ PortManager::cycle_end (nframes, _session);
return 0;
}
@@ -451,7 +451,7 @@ AudioEngine::process_callback (pframes_t nframes)
session_removal_gain -= (nframes * session_removal_gain_step);
}
- PortManager::cycle_end (nframes);
+ PortManager::cycle_end (nframes, _session);
_processed_samples = next_processed_samples;