summaryrefslogtreecommitdiff
path: root/libs/ardour/session_process.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-04-24 04:39:57 +0200
committerRobin Gareus <robin@gareus.org>2015-04-24 04:44:28 +0200
commit4e36760bacecb89f0bb48a90cce205671b316022 (patch)
treed3899416de9cf37bf13c1d2ce04e701424991131 /libs/ardour/session_process.cc
parent3e1fecbf37c9cd34ad8fe7d6ce782958d45ab89b (diff)
send LTC during process_with_events()
fixes #6277 This indicates a deeper problem though. Even removing a punch-range never clears out the events. and ession::process_with_events() does not use process_without_events() until re-start.
Diffstat (limited to 'libs/ardour/session_process.cc')
-rw-r--r--libs/ardour/session_process.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc
index 86f427f792..c868bd635d 100644
--- a/libs/ardour/session_process.cc
+++ b/libs/ardour/session_process.cc
@@ -373,6 +373,8 @@ Session::process_with_events (pframes_t nframes)
send_midi_time_code_for_cycle (_transport_frame, end_frame, nframes);
}
+ ltc_tx_send_time_code_for_cycle (_transport_frame, end_frame, _target_transport_speed, _transport_speed, nframes);
+
framepos_t stop_limit = compute_stop_limit ();
if (maybe_stop (stop_limit)) {