summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/port_manager.h
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/ardour/port_manager.h
parentfba0fce4416578de29b7701cf4d400399d44ceff (diff)
Parallel execution of cycle-start/end
Diffstat (limited to 'libs/ardour/ardour/port_manager.h')
-rw-r--r--libs/ardour/ardour/port_manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/port_manager.h b/libs/ardour/ardour/port_manager.h
index bfbf98c328..743c006fbd 100644
--- a/libs/ardour/ardour/port_manager.h
+++ b/libs/ardour/ardour/port_manager.h
@@ -189,14 +189,14 @@ class LIBARDOUR_API PortManager
* This MUST be called before any reading/writing for this cycle.
* Realtime safe.
*/
- void cycle_start (pframes_t nframes);
+ void cycle_start (pframes_t nframes, Session* s = 0);
/** Signal the end of an audio cycle.
* This signifies that the cycle began with @ref cycle_start has ended.
* This MUST be called at the end of each cycle.
* Realtime safe.
*/
- void cycle_end (pframes_t nframes);
+ void cycle_end (pframes_t nframes, Session* s = 0);
typedef std::map<std::string,MidiPortInformation> MidiPortInfo;