summaryrefslogtreecommitdiff
path: root/libs/ardour/session_process.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-03-13 13:50:34 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-03-13 13:52:38 -0600
commitc83d509203f9184dfc2acccd8aea858a341b29f0 (patch)
tree7bdb97dd3fc92e823f5e213d485fcc14b87994f0 /libs/ardour/session_process.cc
parentf5ec5ea9296df29e99369c85c204ac4cfe4a6e25 (diff)
when locating to follow a transport master, reset engine DLL
Diffstat (limited to 'libs/ardour/session_process.cc')
-rw-r--r--libs/ardour/session_process.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc
index ffe2560478..b84b5c124c 100644
--- a/libs/ardour/session_process.cc
+++ b/libs/ardour/session_process.cc
@@ -905,7 +905,7 @@ Session::process_event (SessionEvent* ev)
break;
- case SessionEvent::SetTransportSpeed:
+ case SessionEvent::SetTransportSpeed:
TFSM_SPEED (ev->speed, ev->yes_or_no, ev->second_yes_or_no, ev->third_yes_or_no);
break;
@@ -1175,6 +1175,7 @@ Session::follow_transport_master (pframes_t nframes)
/* note that for non-JACK transport masters, we assume that the transport state (rolling,stopped) after the locate
* remains unchanged (2nd argument, "roll-after-locate")
*/
+ tmm.reinit (master_speed, master_transport_sample);
TFSM_LOCATE (master_transport_sample, (master_speed != 0) ? MustRoll : MustStop, true, false, false);
}