X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fsession_process.cc;h=ea63e71307b9ae3e9519ef07fcdadefed94e080d;hb=fa5aeb7892fb73d45782b42da731bc5a51418e79;hp=8b4d88b704f420f8df7d632bcab2c8bc30065c32;hpb=5dd8dc0db35bc851bcdcc9ff5212c4344eafb933;p=ardour.git diff --git a/libs/ardour/session_process.cc b/libs/ardour/session_process.cc index 8b4d88b704..ea63e71307 100644 --- a/libs/ardour/session_process.cc +++ b/libs/ardour/session_process.cc @@ -76,9 +76,9 @@ Session::process (nframes_t nframes) nframes_t transport_frames = transport_frame(); BBT_Time transport_bbt; bbt_time(transport_frames, transport_bbt); - SMPTE::Time transport_smpte; - smpte_time(transport_frames, transport_smpte); - tick (transport_frames, transport_bbt, transport_smpte); /* EMIT SIGNAL */ + Timecode::Time transport_timecode; + timecode_time(transport_frames, transport_timecode); + tick (transport_frames, transport_bbt, transport_timecode); /* EMIT SIGNAL */ SendFeedback (); /* EMIT SIGNAL */ @@ -305,11 +305,11 @@ Session::process_with_events (nframes_t nframes) process_event (ev); } - /* Events caused a transport change, send an MTC Full Frame (SMPTE) message. + /* Events caused a transport change, send an MTC Full Frame (Timecode) message. * This is sent whether rolling or not, to give slaves an idea of ardour time * on locates (and allow slow slaves to position and prepare for rolling) */ - if (_send_smpte_update) { + if (_send_timecode_update) { send_full_time_code(nframes); }