summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/session.h2
-rw-r--r--libs/ardour/ardour/slave.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/libs/ardour/ardour/session.h b/libs/ardour/ardour/session.h
index 414a3204bd..a012aac599 100644
--- a/libs/ardour/ardour/session.h
+++ b/libs/ardour/ardour/session.h
@@ -1169,7 +1169,7 @@ class Session : public PBD::StatefulDestructible, public PBD::ScopedConnectionLi
MIDI::byte mtc_msg[16];
MIDI::byte mtc_timecode_bits; /* encoding of SMTPE type for MTC */
MIDI::byte midi_msg[16];
- framepos_t outbound_mtc_timecode_frame;
+ double outbound_mtc_timecode_frame;
Timecode::Time transmitting_timecode_time;
int next_quarter_frame_to_send;
diff --git a/libs/ardour/ardour/slave.h b/libs/ardour/ardour/slave.h
index 471a632f6e..508664e31b 100644
--- a/libs/ardour/ardour/slave.h
+++ b/libs/ardour/ardour/slave.h
@@ -240,7 +240,7 @@ class TimecodeSlave : public Slave {
virtual Timecode::TimecodeFormat apparent_timecode_format() const = 0;
/* this is intended to be used by a UI and polled from a timeout. it should
- return a string describing the current position of the TC source. it
+ return a string describing the current position of the TC source. it
should NOT do any computation, but should use a cached value
of the TC source position.
*/
@@ -282,6 +282,7 @@ class MTC_Slave : public TimecodeSlave {
SafeTime current;
framepos_t mtc_frame; /* current time */
+ double mtc_frame_dll;
framepos_t last_inbound_frame; /* when we got it; audio clocked */
MIDI::byte last_mtc_fps_byte;
framepos_t window_begin;