Maschine2 UI: basic widgets
[ardour.git] / libs / ardour / ltc_slave.cc
1 /*
2     Copyright (C) 2012 Paul Davis
3     Witten by 2012 Robin Gareus <robin@gareus.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20 #include <iostream>
21 #include <errno.h>
22 #include <sys/types.h>
23 #include <unistd.h>
24
25 #include "pbd/error.h"
26 #include "pbd/pthread_utils.h"
27
28 #include "ardour/debug.h"
29 #include "ardour/profile.h"
30 #include "ardour/slave.h"
31 #include "ardour/session.h"
32 #include "ardour/audioengine.h"
33 #include "ardour/audio_port.h"
34
35 #include "pbd/i18n.h"
36
37 using namespace std;
38 using namespace ARDOUR;
39 using namespace MIDI;
40 using namespace PBD;
41 using namespace Timecode;
42
43 #define FLYWHEEL_TIMEOUT ( 1 * session.frame_rate() )
44
45 LTC_Slave::LTC_Slave (Session& s)
46         : session (s)
47 {
48         frames_per_ltc_frame = session.samples_per_timecode_frame();
49         timecode.rate = session.timecode_frames_per_second();
50         timecode.drop  = session.timecode_drop_frames();
51
52         did_reset_tc_format = false;
53         delayedlocked = 10;
54         monotonic_cnt = 0;
55         fps_detected=false;
56         sync_lock_broken = false;
57
58         ltc_timecode = session.config.get_timecode_format();
59         a3e_timecode = session.config.get_timecode_format();
60         printed_timecode_warning = false;
61         ltc_detect_fps_cnt = ltc_detect_fps_max = 0;
62         memset(&prev_frame, 0, sizeof(LTCFrameExt));
63
64         decoder = ltc_decoder_create((int) frames_per_ltc_frame, 128 /*queue size*/);
65
66         session.config.ParameterChanged.connect_same_thread (config_connection, boost::bind (&LTC_Slave::parameter_changed, this, _1));
67         parse_timecode_offset();
68         reset();
69         resync_latency();
70         session.Xrun.connect_same_thread (port_connections, boost::bind (&LTC_Slave::resync_xrun, this));
71         session.engine().GraphReordered.connect_same_thread (port_connections, boost::bind (&LTC_Slave::resync_latency, this));
72 }
73
74 LTC_Slave::~LTC_Slave()
75 {
76         port_connections.drop_connections();
77         config_connection.disconnect();
78
79         if (did_reset_tc_format) {
80                 session.config.set_timecode_format (saved_tc_format);
81         }
82
83         ltc_decoder_free(decoder);
84 }
85
86 void
87 LTC_Slave::parse_timecode_offset() {
88         Timecode::Time offset_tc;
89         Timecode::parse_timecode_format(session.config.get_slave_timecode_offset(), offset_tc);
90         offset_tc.rate = session.timecode_frames_per_second();
91         offset_tc.drop = session.timecode_drop_frames();
92         session.timecode_to_sample(offset_tc, timecode_offset, false, false);
93         timecode_negative_offset = offset_tc.negative;
94 }
95
96 void
97 LTC_Slave::parameter_changed (std::string const & p)
98 {
99         if (p == "slave-timecode-offset"
100                         || p == "timecode-format"
101                         ) {
102                 parse_timecode_offset();
103         }
104 }
105
106 ARDOUR::framecnt_t
107 LTC_Slave::resolution () const
108 {
109         return (framecnt_t) (session.frame_rate() / 1000);
110 }
111
112 bool
113 LTC_Slave::locked () const
114 {
115         return (delayedlocked < 5);
116 }
117
118 bool
119 LTC_Slave::ok() const
120 {
121         return true;
122 }
123
124 void
125 LTC_Slave::resync_xrun()
126 {
127         DEBUG_TRACE (DEBUG::LTC, "LTC resync_xrun()\n");
128         engine_dll_initstate = 0;
129         sync_lock_broken = false;
130 }
131
132 void
133 LTC_Slave::resync_latency()
134 {
135         DEBUG_TRACE (DEBUG::LTC, "LTC resync_latency()\n");
136         engine_dll_initstate = 0;
137         sync_lock_broken = false;
138
139         if (!session.deletion_in_progress() && session.ltc_output_io()) { /* check if Port exits */
140                 boost::shared_ptr<Port> ltcport = session.ltc_input_port();
141                 ltcport->get_connected_latency_range (ltc_slave_latency, false);
142         }
143 }
144
145 void
146 LTC_Slave::reset (bool with_ts)
147 {
148         DEBUG_TRACE (DEBUG::LTC, "LTC reset()\n");
149         if (with_ts) {
150                 last_timestamp = 0;
151                 current_delta = 0;
152         }
153         transport_direction = 0;
154         ltc_speed = 0;
155         engine_dll_initstate = 0;
156         sync_lock_broken = false;
157
158         ActiveChanged (false); /* EMIT SIGNAL */
159 }
160
161 void
162 LTC_Slave::parse_ltc(const ARDOUR::pframes_t nframes, const Sample* const in, const ARDOUR::framecnt_t posinfo)
163 {
164         pframes_t i;
165         unsigned char sound[8192];
166         if (nframes > 8192) {
167                 /* TODO warn once or wrap, loop conversion below
168                  * does jack/A3 support > 8192 spp anyway?
169                  */
170                 return;
171         }
172
173         for (i = 0; i < nframes; i++) {
174                 const int snd=(int)rint((127.0*in[i])+128.0);
175                 sound[i] = (unsigned char) (snd&0xff);
176         }
177         ltc_decoder_write(decoder, sound, nframes, posinfo);
178         return;
179 }
180
181 bool
182 LTC_Slave::equal_ltc_frame_time(LTCFrame *a, LTCFrame *b) {
183         if (       a->frame_units != b->frame_units
184                 || a->frame_tens  != b->frame_tens
185                 || a->dfbit       != b->dfbit
186                 || a->secs_units  != b->secs_units
187                 || a->secs_tens   != b->secs_tens
188                 || a->mins_units  != b->mins_units
189                 || a->mins_tens   != b->mins_tens
190                 || a->hours_units != b->hours_units
191                 || a->hours_tens  != b->hours_tens
192              ) {
193                 return false;
194         }
195         return true;
196 }
197
198 bool
199 LTC_Slave::detect_discontinuity(LTCFrameExt *frame, int fps, bool fuzzy) {
200         bool discontinuity_detected = false;
201
202         if (fuzzy && (
203                   ( frame->reverse && prev_frame.ltc.frame_units == 0)
204                 ||(!frame->reverse && frame->ltc.frame_units == 0)
205                 )) {
206                 memcpy(&prev_frame, frame, sizeof(LTCFrameExt));
207                 return false;
208         }
209
210         if (frame->reverse) {
211                 ltc_frame_decrement(&prev_frame.ltc, fps, LTC_TV_525_60, 0);
212         } else {
213                 ltc_frame_increment(&prev_frame.ltc, fps, LTC_TV_525_60, 0);
214         }
215         if (!equal_ltc_frame_time(&prev_frame.ltc, &frame->ltc)) {
216                 discontinuity_detected = true;
217         }
218
219     memcpy(&prev_frame, frame, sizeof(LTCFrameExt));
220     return discontinuity_detected;
221 }
222
223 bool
224 LTC_Slave::detect_ltc_fps(int frameno, bool df)
225 {
226         bool fps_changed = false;
227         double detected_fps = 0;
228         if (frameno > ltc_detect_fps_max)
229         {
230                 ltc_detect_fps_max = frameno;
231         }
232         ltc_detect_fps_cnt++;
233
234         if (ltc_detect_fps_cnt > 40) {
235                 if (ltc_detect_fps_cnt > ltc_detect_fps_max) {
236                         detected_fps = ltc_detect_fps_max + 1;
237                         if (df) {
238                                 /* LTC df -> indicates fractional framerate */
239                                 if (Config->get_timecode_source_2997()) {
240                                         detected_fps = detected_fps * 999.0 / 1000.0;
241                                 } else {
242                                         detected_fps = detected_fps * 1000.0 / 1001.0;
243                                 }
244                         }
245
246                         if (timecode.rate != detected_fps || timecode.drop != df) {
247                                 DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC detected FPS: %1%2\n", detected_fps, df?"df":"ndf"));
248                         } else {
249                                 detected_fps = 0; /* no cange */
250                         }
251                 }
252                 ltc_detect_fps_cnt = ltc_detect_fps_max = 0;
253         }
254
255         /* when changed */
256         if (detected_fps != 0 && (detected_fps != timecode.rate || df != timecode.drop)) {
257                 timecode.rate = detected_fps;
258                 timecode.drop = df;
259                 frames_per_ltc_frame = double(session.frame_rate()) / timecode.rate;
260                 DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC reset to FPS: %1%2 ; audio-frames per LTC: %3\n",
261                                 detected_fps, df?"df":"ndf", frames_per_ltc_frame));
262                 fps_changed=true;
263         }
264
265         /* poll and check session TC */
266         TimecodeFormat tc_format = apparent_timecode_format();
267         TimecodeFormat cur_timecode = session.config.get_timecode_format();
268
269         if (Config->get_timecode_sync_frame_rate()) {
270                 /* enforce time-code */
271                 if (!did_reset_tc_format) {
272                         saved_tc_format = cur_timecode;
273                         did_reset_tc_format = true;
274                 }
275                 if (cur_timecode != tc_format) {
276                         if (ceil(Timecode::timecode_to_frames_per_second(cur_timecode)) != ceil(Timecode::timecode_to_frames_per_second(tc_format))) {
277                                 warning << string_compose(_("Session framerate adjusted from %1 to LTC's %2."),
278                                                 Timecode::timecode_format_name(cur_timecode),
279                                                 Timecode::timecode_format_name(tc_format))
280                                         << endmsg;
281                         }
282                         session.config.set_timecode_format (tc_format);
283                 }
284         } else {
285                 /* only warn about TC mismatch */
286                 if (ltc_timecode != tc_format) printed_timecode_warning = false;
287                 if (a3e_timecode != cur_timecode) printed_timecode_warning = false;
288
289                 if (cur_timecode != tc_format && ! printed_timecode_warning) {
290                         if (ceil(Timecode::timecode_to_frames_per_second(cur_timecode)) != ceil(Timecode::timecode_to_frames_per_second(tc_format))) {
291                                 warning << string_compose(_("Session and LTC framerate mismatch: LTC:%1 Session:%2."),
292                                                 Timecode::timecode_format_name(tc_format),
293                                                 Timecode::timecode_format_name(cur_timecode))
294                                         << endmsg;
295                         }
296                         printed_timecode_warning = true;
297                 }
298         }
299         ltc_timecode = tc_format;
300         a3e_timecode = cur_timecode;
301
302         return fps_changed;
303 }
304
305 void
306 LTC_Slave::process_ltc(framepos_t const /*now*/)
307 {
308         LTCFrameExt frame;
309         enum LTC_TV_STANDARD tv_standard = LTC_TV_625_50;
310         while (ltc_decoder_read(decoder, &frame)) {
311                 SMPTETimecode stime;
312
313                 ltc_frame_to_time(&stime, &frame.ltc, 0);
314                 timecode.negative  = false;
315                 timecode.subframes  = 0;
316
317                 /* set timecode.rate and timecode.drop: */
318                 bool ltc_is_static = equal_ltc_frame_time(&prev_frame.ltc, &frame.ltc);
319
320                 if (detect_discontinuity(&frame, ceil(timecode.rate), !fps_detected)) {
321                         if (fps_detected) { ltc_detect_fps_cnt = ltc_detect_fps_max = 0; }
322                         fps_detected=false;
323                 }
324
325                 if (!ltc_is_static && detect_ltc_fps(stime.frame, (frame.ltc.dfbit)? true : false)) {
326                         reset();
327                         fps_detected=true;
328                 }
329
330 #if 0 // Devel/Debug
331                 fprintf(stdout, "LTC %02d:%02d:%02d%c%02d | %8lld %8lld%s\n",
332                         stime.hours,
333                         stime.mins,
334                         stime.secs,
335                         (frame.ltc.dfbit) ? '.' : ':',
336                         stime.frame,
337                         frame.off_start,
338                         frame.off_end,
339                         frame.reverse ? " R" : "  "
340                         );
341 #endif
342
343                 /* when a full LTC frame is decoded, the timecode the LTC frame
344                  * is referring has just passed.
345                  * So we send the _next_ timecode which
346                  * is expected to start at the end of the current frame
347                  */
348                 int fps_i = ceil(timecode.rate);
349
350                 switch(fps_i) {
351                         case 30:
352                                 if (timecode.drop) {
353                                         tv_standard = LTC_TV_525_60;
354                                 } else {
355                                         tv_standard = LTC_TV_1125_60;
356                                 }
357                                 break;
358                         case 25:
359                                 tv_standard = LTC_TV_625_50;
360                                 break;
361                         default:
362                                 tv_standard = LTC_TV_FILM_24; /* == LTC_TV_1125_60 == no offset, 24,30fps BGF */
363                                 break;
364                 }
365
366                 if (!frame.reverse) {
367                         ltc_frame_increment(&frame.ltc, fps_i, tv_standard, 0);
368                         ltc_frame_to_time(&stime, &frame.ltc, 0);
369                         transport_direction = 1;
370                         frame.off_start -= ltc_frame_alignment(session.samples_per_timecode_frame(), tv_standard);
371                         frame.off_end -= ltc_frame_alignment(session.samples_per_timecode_frame(), tv_standard);
372                 } else {
373                         ltc_frame_decrement(&frame.ltc, fps_i, tv_standard, 0);
374                         int off = frame.off_end - frame.off_start;
375                         frame.off_start += off - ltc_frame_alignment(session.samples_per_timecode_frame(), tv_standard);
376                         frame.off_end += off - ltc_frame_alignment(session.samples_per_timecode_frame(), tv_standard);
377                         transport_direction = -1;
378                 }
379
380                 timecode.hours   = stime.hours;
381                 timecode.minutes = stime.mins;
382                 timecode.seconds = stime.secs;
383                 timecode.frames  = stime.frame;
384
385                 /* map LTC timecode to session TC setting */
386                 framepos_t ltc_frame; ///< audio-frame corresponding to LTC frame
387                 Timecode::timecode_to_sample (timecode, ltc_frame, true, false,
388                         double(session.frame_rate()),
389                         session.config.get_subframes_per_frame(),
390                         timecode_negative_offset, timecode_offset
391                         );
392
393                 ltc_frame += ltc_slave_latency.max + session.worst_playback_latency();
394
395                 framepos_t cur_timestamp = frame.off_end + 1;
396                 DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC F: %1 LF: %2  N: %3 L: %4\n", ltc_frame, last_ltc_frame, cur_timestamp, last_timestamp));
397                 if (frame.off_end + 1 <= last_timestamp || last_timestamp == 0) {
398                         DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC speed: UNCHANGED: %1\n", ltc_speed));
399                 } else {
400                         ltc_speed = double(ltc_frame - last_ltc_frame) / double(cur_timestamp - last_timestamp);
401                         DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC speed: %1\n", ltc_speed));
402                 }
403
404                 if (fabs(ltc_speed) > 10.0) {
405                         ltc_speed = 0;
406                 }
407
408                 last_timestamp = frame.off_end + 1;
409                 last_ltc_frame = ltc_frame;
410         } /* end foreach decoded LTC frame */
411 }
412
413 void
414 LTC_Slave::init_engine_dll (framepos_t pos, int32_t inc)
415 {
416         double omega = 2.0 * M_PI * double(inc) / double(session.frame_rate());
417         b = 1.4142135623730950488 * omega;
418         c = omega * omega;
419
420         e2 = double(ltc_speed * inc);
421         t0 = double(pos);
422         t1 = t0 + e2;
423         DEBUG_TRACE (DEBUG::LTC, string_compose ("[re-]init Engine DLL %1 %2 %3\n", t0, t1, e2));
424 }
425
426 /* main entry point from session_process.cc
427  * called from process callback context
428  * so it is OK to use get_buffer()
429  */
430 bool
431 LTC_Slave::speed_and_position (double& speed, framepos_t& pos)
432 {
433         bool engine_init_called = false;
434         framepos_t now = session.engine().sample_time_at_cycle_start();
435         framepos_t sess_pos = session.transport_frame(); // corresponds to now
436         framecnt_t nframes = session.engine().samples_per_cycle();
437
438         Sample* in;
439
440         boost::shared_ptr<Port> ltcport = session.ltc_input_port();
441
442         in = (Sample*) AudioEngine::instance()->port_engine().get_buffer (ltcport->port_handle(), nframes);
443
444         frameoffset_t skip = now - (monotonic_cnt + nframes);
445         monotonic_cnt = now;
446         DEBUG_TRACE (DEBUG::LTC, string_compose ("speed_and_position - TID:%1 | latency: %2 | skip %3\n", pthread_name(), ltc_slave_latency.max, skip));
447
448         if (last_timestamp == 0) {
449                 engine_dll_initstate = 0;
450                 if (delayedlocked < 10) ++delayedlocked;
451         } else if (engine_dll_initstate != transport_direction && ltc_speed != 0) {
452
453                 ActiveChanged (true); /* EMIT SIGNAL */
454
455                 engine_dll_initstate = transport_direction;
456                 init_engine_dll(last_ltc_frame + rint(ltc_speed * double(2 * nframes + now - last_timestamp)),
457                                 session.engine().samples_per_cycle());
458                 engine_init_called = true;
459         }
460
461         if (in) {
462                 DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC Process eng-tme: %1 eng-pos: %2\n", now, sess_pos));
463                 /* when the jack-graph changes and if ardour performs
464                  * locates, the audioengine is stopped (skipping frames) while
465                  * jack [time] moves along.
466                  */
467                 if (skip > 0) {
468                         DEBUG_TRACE (DEBUG::LTC, string_compose("engine skipped %1 frames. Feeding silence to LTC parser.\n", skip));
469                         if (skip >= 8192) skip = 8192;
470                         unsigned char sound[8192];
471                         memset(sound, 0x80, sizeof(char) * skip);
472                         ltc_decoder_write(decoder, sound, nframes, now);
473                 } else if (skip != 0) {
474                         /* this should never happen. it may if monotonic_cnt, now overflow on 64bit */
475                         DEBUG_TRACE (DEBUG::LTC, string_compose("engine skipped %1 frames\n", skip));
476                         reset();
477                 }
478
479                 parse_ltc(nframes, in, now);
480                 process_ltc(now);
481         }
482
483         if (last_timestamp == 0) {
484                 DEBUG_TRACE (DEBUG::LTC, "last timestamp == 0\n");
485                 speed = 0;
486                 pos = session.transport_frame();
487                 return true;
488         } else if (ltc_speed != 0) {
489                 if (delayedlocked > 1) delayedlocked--;
490                 else if (current_delta == 0) delayedlocked = 0;
491         }
492
493         if (abs(now - last_timestamp) > FLYWHEEL_TIMEOUT) {
494                 DEBUG_TRACE (DEBUG::LTC, "flywheel timeout\n");
495                 reset();
496                 speed = 0;
497                 pos = session.transport_frame();
498                 ActiveChanged (false); /* EMIT SIGNAL */
499                 return true;
500         }
501
502         /* it take 2 cycles from naught to rolling.
503          * during these to initial cycles the speed == 0
504          *
505          * the first cycle:
506          * DEBUG::Slave: slave stopped, move to NNN
507          * DEBUG::Transport: Request forced locate to NNN
508          * DEBUG::Slave: slave state 0 @ NNN speed 0 cur delta VERY-LARGE-DELTA avg delta 1800
509          * DEBUG::Slave: silent motion
510          * DEBUG::Transport: realtime stop @ NNN
511          * DEBUG::Transport: Butler transport work, todo = PostTransportStop,PostTransportLocate,PostTransportClearSubstate
512          *
513          * [engine skips frames to locate, jack time keeps rolling on]
514          *
515          * the second cycle:
516          *
517          * DEBUG::LTC: [re-]init Engine DLL
518          * DEBUG::Slave: slave stopped, move to NNN+
519          * ...
520          *
521          * we need to seek two cycles ahead: 2 * nframes
522          */
523         if (engine_dll_initstate == 0) {
524                 DEBUG_TRACE (DEBUG::LTC, "engine DLL not initialized. ltc_speed\n");
525                 speed = 0;
526                 pos = last_ltc_frame + rint(ltc_speed * double(2 * nframes + now - last_timestamp));
527                 return true;
528         }
529
530         /* interpolate position according to speed and time since last LTC-frame*/
531         double speed_flt = ltc_speed;
532         double elapsed = (now - last_timestamp) * speed_flt;
533
534         if (!engine_init_called) {
535                 const double e = elapsed + double (last_ltc_frame - sess_pos);
536                 t0 = t1;
537                 t1 += b * e + e2;
538                 e2 += c * e;
539                 speed_flt = (t1 - t0) / double(session.engine().samples_per_cycle());
540                 DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC engine DLL t0:%1 t1:%2 err:%3 spd:%4 ddt:%5\n", t0, t1, e, speed_flt, e2 - session.engine().samples_per_cycle() ));
541         } else {
542                 DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC adjusting elapsed (no DLL) from %1 by %2\n", elapsed, (2 * nframes * ltc_speed)));
543                 speed_flt = 0;
544                 elapsed += 2.0 * nframes * ltc_speed; /* see note above */
545         }
546
547         pos = last_ltc_frame + rint(elapsed);
548         speed = speed_flt;
549         current_delta = (pos - sess_pos);
550
551         if (((pos < 0) || (labs(current_delta) > 2 * session.frame_rate()))) {
552                 DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC large drift: %1\n", current_delta));
553                 reset();
554                 speed = 0;
555                 return true;
556         }
557
558         DEBUG_TRACE (DEBUG::LTC, string_compose ("LTCsync spd: %1 pos: %2 | last-pos: %3 elapsed: %4 delta: %5\n",
559                                                  speed, pos, last_ltc_frame, elapsed, current_delta));
560
561         /* provide a .1% deadzone to lock the speed */
562         if (fabs(speed - 1.0) <= 0.001) {
563                 speed = 1.0;
564         }
565
566         if (speed != 0 && delayedlocked == 0 && fabs(speed) != 1.0) {
567                 sync_lock_broken = true;
568                 DEBUG_TRACE (DEBUG::LTC, string_compose ("LTC speed not locked %1 %2\n", speed, ltc_speed));
569         }
570
571         return true;
572 }
573
574 Timecode::TimecodeFormat
575 LTC_Slave::apparent_timecode_format () const
576 {
577         if      (timecode.rate == 24 && !timecode.drop)
578                 return timecode_24;
579         else if (timecode.rate == 25 && !timecode.drop)
580                 return timecode_25;
581         else if (rint(timecode.rate * 100) == 2997 && !timecode.drop)
582                 return (Config->get_timecode_source_2997() ? timecode_2997000 : timecode_2997);
583         else if (rint(timecode.rate * 100) == 2997 &&  timecode.drop)
584                 return (Config->get_timecode_source_2997() ? timecode_2997000drop : timecode_2997drop);
585         else if (timecode.rate == 30 &&  timecode.drop)
586                 return timecode_2997drop; // timecode_30drop; // LTC counting to 30 frames w/DF *means* 29.97 df
587         else if (timecode.rate == 30 && !timecode.drop)
588                 return timecode_30;
589
590         /* XXX - unknown timecode format */
591         return session.config.get_timecode_format();
592 }
593
594 std::string
595 LTC_Slave::approximate_current_position() const
596 {
597         if (last_timestamp == 0) {
598                 return " --:--:--:--";
599         }
600         return Timecode::timecode_format_time(timecode);
601 }
602
603 std::string
604 LTC_Slave::approximate_current_delta() const
605 {
606         char delta[80];
607         if (last_timestamp == 0 || engine_dll_initstate == 0) {
608                 snprintf(delta, sizeof(delta), "\u2012\u2012\u2012\u2012");
609         } else if ((monotonic_cnt - last_timestamp) > 2 * frames_per_ltc_frame) {
610                 snprintf(delta, sizeof(delta), "%s", _("flywheel"));
611         } else {
612                 snprintf(delta, sizeof(delta), "\u0394<span foreground=\"%s\" face=\"monospace\" >%s%s%lld</span>sm",
613                                 sync_lock_broken ? "red" : "green",
614                                 LEADINGZERO(::llabs(current_delta)), PLUSMINUS(-current_delta), ::llabs(current_delta));
615         }
616         return std::string(delta);
617 }