d71bba6ba2fdee2dd71d5c94c0fe93f11b502520
[ardour.git] / libs / ardour / session_time.cc
1
2 /*
3   Copyright (C) 1999-2002 Paul Davis
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
21 #ifdef WAF_BUILD
22 #include "libardour-config.h"
23 #endif
24
25 #include <iostream>
26 #include <cmath>
27 #include <unistd.h>
28
29 #include "ardour/timestamps.h"
30
31 #include "pbd/error.h"
32 #include "pbd/enumwriter.h"
33 #include "pbd/stacktrace.h"
34
35 #include "ardour/ardour.h"
36 #include "ardour/configuration.h"
37 #include "ardour/audioengine.h"
38 #include "ardour/session.h"
39 #include "ardour/tempo.h"
40
41 #include "i18n.h"
42
43 using namespace std;
44 using namespace ARDOUR;
45 using namespace PBD;
46
47 /* BBT TIME*/
48
49 void
50 Session::bbt_time (nframes_t when, BBT_Time& bbt)
51 {
52         _tempo_map->bbt_time (when, bbt);
53 }
54
55 /* Timecode TIME */
56 float
57 Session::timecode_frames_per_second() const
58 {
59         switch (config.get_timecode_format()) {
60                 case timecode_23976:
61                         return 23.976;
62
63                         break;
64                 case timecode_24:
65                         return 24;
66
67                         break;
68                 case timecode_24976:
69                         return 24.976;
70
71                         break;
72                 case timecode_25:
73                         return 25;
74
75                         break;
76                 case timecode_2997:
77                         return 29.97;
78
79                         break;
80                 case timecode_2997drop:
81                         return 29.97;
82
83                         break;
84                 case timecode_30:
85                         return 30;
86
87                         break;
88                 case timecode_30drop:
89                         return 30;
90
91                         break;
92                 case timecode_5994:
93                         return 59.94;
94
95                         break;
96                 case timecode_60:
97                         return 60;
98
99                         break;
100                 default:
101                   cerr << "Editor received unexpected timecode type" << endl;
102         }
103         return 30.0;
104 }
105 bool
106 Session::timecode_drop_frames() const
107 {
108         switch (config.get_timecode_format()) {
109                 case timecode_23976:
110                         return false;
111
112                         break;
113                 case timecode_24:
114                         return false;
115
116                         break;
117                 case timecode_24976:
118                         return false;
119
120                         break;
121                 case timecode_25:
122                         return false;
123
124                         break;
125                 case timecode_2997:
126                         return false;
127
128                         break;
129                 case timecode_2997drop:
130                         return true;
131
132                         break;
133                 case timecode_30:
134                         return false;
135
136                         break;
137                 case timecode_30drop:
138                         return true;
139
140                         break;
141                 case timecode_5994:
142                         return false;
143
144                         break;
145                 case timecode_60:
146                         return false;
147
148                         break;
149                 default:
150                         error << "Editor received unexpected timecode type" << endmsg;
151         }
152
153         return false;
154 }
155 void
156 Session::sync_time_vars ()
157 {
158         _current_frame_rate = (nframes_t) round (_base_frame_rate * (1.0 + (config.get_video_pullup()/100.0)));
159         _frames_per_timecode_frame = (double) _current_frame_rate / (double) timecode_frames_per_second();
160         if (timecode_drop_frames()) {
161           _frames_per_hour = (int32_t)(107892 * _frames_per_timecode_frame);
162         } else {
163           _frames_per_hour = (int32_t)(3600 * rint(timecode_frames_per_second()) * _frames_per_timecode_frame);
164         }
165         _timecode_frames_per_hour = (nframes_t)rint(timecode_frames_per_second() * 3600.0);
166
167         last_timecode_valid = false;
168         // timecode type bits are the middle two in the upper nibble
169         switch ((int) ceil (timecode_frames_per_second())) {
170         case 24:
171                 mtc_timecode_bits = 0;
172                 break;
173
174         case 25:
175                 mtc_timecode_bits = 0x20;
176                 break;
177
178         case 30:
179         default:
180                 if (timecode_drop_frames()) {
181                         mtc_timecode_bits = 0x40;
182                 } else {
183                         mtc_timecode_bits =  0x60;
184                 }
185                 break;
186         };
187 }
188
189 void
190 Session::timecode_to_sample (Timecode::Time& timecode, framepos_t& sample, bool use_subframes) const
191 {
192         if (timecode.drop) {
193                 // The drop frame format was created to better approximate the 30000/1001 = 29.97002997002997....
194                 // framerate of NTSC color TV. The used frame rate of drop frame is 29.97, which drifts by about
195                 // 0.108 frame per hour, or about 1.3 frames per 12 hours. This is not perfect, but a lot better
196                 // than using 30 non drop, which will drift with about 1.8 frame per minute.
197                 // Using 29.97, drop frame real time can be accurate only every 10th minute (10 minutes of 29.97 fps
198                 // is exactly 17982 frames). One minute is 1798.2 frames, but we count 30 frames per second
199                 // (30 * 60 = 1800). This means that at the first minute boundary (at the end of 0:0:59:29) we
200                 // are 1.8 frames too late relative to real time. By dropping 2 frames (jumping to 0:1:0:2) we are
201                 // approx. 0.2 frames too early. This adds up with 0.2 too early for each minute until we are 1.8
202                 // frames too early at 0:9:0:2 (9 * 0.2 = 1.8). The 10th minute brings us 1.8 frames later again
203                 // (at end of 0:9:59:29), which sums up to 0 (we are back to zero at 0:10:0:0 :-).
204                 //
205                 // In table form:
206                 //
207                 // Timecode value    frames offset   subframes offset   seconds (rounded)  44100 sample (rounded)
208                 //  0:00:00:00        0.0             0                     0.000                0 (accurate)
209                 //  0:00:59:29        1.8           144                    60.027          2647177
210                 //  0:01:00:02       -0.2           -16                    60.060          2648648
211                 //  0:01:59:29        1.6           128                   120.020          5292883
212                 //  0:02:00:02       -0.4           -32                   120.053          5294354
213                 //  0:02:59:29        1.4           112                   180.013          7938588
214                 //  0:03:00:02       -0.6           -48                   180.047          7940060
215                 //  0:03:59:29        1.2            96                   240.007         10584294
216                 //  0:04:00:02       -0.8           -64                   240.040         10585766
217                 //  0:04:59:29        1.0            80                   300.000         13230000
218                 //  0:05:00:02       -1.0           -80                   300.033         13231471
219                 //  0:05:59:29        0.8            64                   359.993         15875706
220                 //  0:06:00:02       -1.2           -96                   360.027         15877177
221                 //  0:06:59:29        0.6            48                   419.987         18521411
222                 //  0:07:00:02       -1.4          -112                   420.020         18522883
223                 //  0:07:59:29        0.4            32                   478.980         21167117
224                 //  0:08:00:02       -1.6          -128                   480.013         21168589
225                 //  0:08:59:29        0.2            16                   539.973         23812823
226                 //  0:09:00:02       -1.8          -144                   540.007         23814294
227                 //  0:09:59:29        0.0+            0+                  599.967         26458529
228                 //  0:10:00:00        0.0             0                   600.000         26460000 (accurate)
229                 //
230                 //  Per Sigmond <per@sigmond.no>
231
232                 // Samples inside time dividable by 10 minutes (real time accurate)
233                 nframes_t base_samples = (nframes_t) (((timecode.hours * 107892) + ((timecode.minutes / 10) * 17982)) * _frames_per_timecode_frame);
234
235                 // Samples inside time exceeding the nearest 10 minutes (always offset, see above)
236                 int32_t exceeding_df_minutes = timecode.minutes % 10;
237                 int32_t exceeding_df_seconds = (exceeding_df_minutes * 60) + timecode.seconds;
238                 int32_t exceeding_df_frames = (30 * exceeding_df_seconds) + timecode.frames - (2 * exceeding_df_minutes);
239                 nframes_t exceeding_samples = (nframes_t) rint(exceeding_df_frames * _frames_per_timecode_frame);
240                 sample = base_samples + exceeding_samples;
241         } else {
242                 /*
243                    Non drop is easy.. just note the use of
244                    rint(timecode.rate) * _frames_per_timecode_frame
245                    (frames per Timecode second), which is larger than
246                    frame_rate() in the non-integer Timecode rate case.
247                 */
248
249                 sample = (nframes_t)rint((((timecode.hours * 60 * 60) + (timecode.minutes * 60) + timecode.seconds) * (rint(timecode.rate) * _frames_per_timecode_frame)) + (timecode.frames * _frames_per_timecode_frame));
250         }
251
252         if (use_subframes) {
253                 sample += (int32_t) (((double)timecode.subframes * _frames_per_timecode_frame) / config.get_subframes_per_frame());
254         }
255 }
256
257
258 void
259 Session::sample_to_timecode (framepos_t sample, Timecode::Time& timecode, bool use_subframes) const
260 {
261         framepos_t offset_sample;
262
263         offset_sample = sample;
264         timecode.negative = false;
265
266         double timecode_frames_left_exact;
267         double timecode_frames_fraction;
268         uint32_t timecode_frames_left;
269
270         // Extract whole hours. Do this to prevent rounding errors with
271         // high sample numbers in the calculations that follow.
272         timecode.hours = offset_sample / _frames_per_hour;
273         offset_sample = offset_sample % _frames_per_hour;
274
275         // Calculate exact number of (exceeding) timecode frames and fractional frames
276         timecode_frames_left_exact = (double) offset_sample / _frames_per_timecode_frame;
277         timecode_frames_fraction = timecode_frames_left_exact - floor( timecode_frames_left_exact );
278         timecode.subframes = (int32_t) rint(timecode_frames_fraction * config.get_subframes_per_frame());
279
280         // XXX Not sure if this is necessary anymore...
281         if (timecode.subframes == config.get_subframes_per_frame()) {
282                 // This can happen with 24 fps (and 29.97 fps ?)
283                 timecode_frames_left_exact = ceil( timecode_frames_left_exact );
284                 timecode.subframes = 0;
285         }
286
287         // Extract hour-exceeding frames for minute, second and frame calculations
288         timecode_frames_left = (uint32_t) floor (timecode_frames_left_exact);
289
290         if (timecode_drop_frames()) {
291                 // See int32_t explanation in timecode_to_sample()...
292
293                 // Number of 10 minute chunks
294                 timecode.minutes = (timecode_frames_left / 17982) * 10; // exactly 17982 frames in 10 minutes
295                 // frames exceeding the nearest 10 minute barrier
296                 int32_t exceeding_df_frames = timecode_frames_left % 17982;
297
298                 // Find minutes exceeding the nearest 10 minute barrier
299                 if (exceeding_df_frames >= 1800) { // nothing to do if we are inside the first minute (0-1799)
300                         exceeding_df_frames -= 1800; // take away first minute (different number of frames than the others)
301                         int32_t extra_minutes_minus_1 = exceeding_df_frames / 1798; // how many minutes after the first one
302                         exceeding_df_frames -= extra_minutes_minus_1 * 1798; // take away the (extra) minutes just found
303                         timecode.minutes += extra_minutes_minus_1 + 1; // update with exceeding minutes
304                 }
305
306                 // Adjust frame numbering for dropped frames (frame 0 and 1 skipped at start of every minute except every 10th)
307                 if (timecode.minutes % 10) {
308                         // Every minute except every 10th
309                         if (exceeding_df_frames < 28) {
310                                 // First second, frames 0 and 1 are skipped
311                                 timecode.seconds = 0;
312                                 timecode.frames = exceeding_df_frames + 2;
313                         } else {
314                                 // All other seconds, all 30 frames are counted
315                                 exceeding_df_frames -= 28;
316                                 timecode.seconds = (exceeding_df_frames / 30) + 1;
317                                 timecode.frames = exceeding_df_frames % 30;
318                         }
319                 } else {
320                         // Every 10th minute, all 30 frames counted in all seconds
321                         timecode.seconds = exceeding_df_frames / 30;
322                         timecode.frames = exceeding_df_frames % 30;
323                 }
324         } else {
325                 // Non drop is easy
326                 timecode.minutes = timecode_frames_left / ((int32_t) rint (timecode_frames_per_second ()) * 60);
327                 timecode_frames_left = timecode_frames_left % ((int32_t) rint (timecode_frames_per_second ()) * 60);
328                 timecode.seconds = timecode_frames_left / (int32_t) rint(timecode_frames_per_second ());
329                 timecode.frames = timecode_frames_left % (int32_t) rint(timecode_frames_per_second ());
330         }
331
332         if (!use_subframes) {
333                 timecode.subframes = 0;
334         }
335         /* set frame rate and drop frame */
336         timecode.rate = timecode_frames_per_second ();
337         timecode.drop = timecode_drop_frames();
338 }
339
340 void
341 Session::timecode_time (nframes_t when, Timecode::Time& timecode)
342 {
343         if (last_timecode_valid && when == last_timecode_when) {
344                 timecode = last_timecode;
345                 return;
346         }
347
348         sample_to_timecode (when, timecode, false /* use_subframes */);
349
350         last_timecode_when = when;
351         last_timecode = timecode;
352         last_timecode_valid = true;
353 }
354
355 void
356 Session::timecode_time_subframes (nframes_t when, Timecode::Time& timecode)
357 {
358         if (last_timecode_valid && when == last_timecode_when) {
359                 timecode = last_timecode;
360                 return;
361         }
362
363         sample_to_timecode (when, timecode, true /* use_subframes */);
364
365         last_timecode_when = when;
366         last_timecode = timecode;
367         last_timecode_valid = true;
368 }
369
370 void
371 Session::timecode_duration (framecnt_t when, Timecode::Time& timecode) const
372 {
373         sample_to_timecode (when, timecode, true /* use_subframes */);
374 }
375
376 void
377 Session::timecode_duration_string (char* buf, framepos_t when) const
378 {
379         Timecode::Time timecode;
380
381         timecode_duration (when, timecode);
382         snprintf (buf, sizeof (buf), "%02" PRIu32 ":%02" PRIu32 ":%02" PRIu32 ":%02" PRIu32, timecode.hours, timecode.minutes, timecode.seconds, timecode.frames);
383 }
384
385 void
386 Session::timecode_time (Timecode::Time &t)
387
388 {
389         timecode_time (_transport_frame, t);
390 }
391
392 int
393 Session::jack_sync_callback (jack_transport_state_t state,
394                              jack_position_t* pos)
395 {
396         bool slave = synced_to_jack();
397
398         switch (state) {
399         case JackTransportStopped:
400                 if (slave && _transport_frame != pos->frame && post_transport_work() == 0) {
401                         request_locate (pos->frame, false);
402                         // cerr << "SYNC: stopped, locate to " << pos->frame << " from " << _transport_frame << endl;
403                         return false;
404                 } else {
405                         return true;
406                 }
407
408         case JackTransportStarting:
409                 // cerr << "SYNC: starting @ " << pos->frame << " a@ " << _transport_frame << " our work = " <<  post_transport_work() << " pos matches ? " << (_transport_frame == pos->frame) << endl;
410                 if (slave) {
411                         return _transport_frame == pos->frame && post_transport_work() == 0;
412                 } else {
413                         return true;
414                 }
415                 break;
416
417         case JackTransportRolling:
418                 // cerr << "SYNC: rolling slave = " << slave << endl;
419                 if (slave) {
420                         start_transport ();
421                 }
422                 break;
423
424         default:
425                 error << string_compose (_("Unknown JACK transport state %1 in sync callback"), state)
426                       << endmsg;
427         }
428
429         return true;
430 }
431
432 void
433 Session::jack_timebase_callback (jack_transport_state_t /*state*/,
434                                  nframes_t /*nframes*/,
435                                  jack_position_t* pos,
436                                  int /*new_position*/)
437 {
438         BBT_Time bbt;
439
440         if (pos->frame != _transport_frame) {
441                 cerr << "ARDOUR says " << _transport_frame << " JACK says " << pos->frame << endl;
442         }
443
444         /* BBT info */
445
446         if (_tempo_map) {
447
448                 TempoMetric metric (_tempo_map->metric_at (_transport_frame));
449                 _tempo_map->bbt_time_with_metric (_transport_frame, bbt, metric);
450
451                 pos->bar = bbt.bars;
452                 pos->beat = bbt.beats;
453                 pos->tick = bbt.ticks;
454
455                 // XXX still need to set bar_start_tick
456
457                 pos->beats_per_bar = metric.meter().beats_per_bar();
458                 pos->beat_type = metric.meter().note_divisor();
459                 pos->ticks_per_beat = Meter::ticks_per_beat;
460                 pos->beats_per_minute = metric.tempo().beats_per_minute();
461
462                 pos->valid = jack_position_bits_t (pos->valid | JackPositionBBT);
463         }
464
465 #ifdef HAVE_JACK_VIDEO_SUPPORT
466         //poke audio video ratio so Ardour can track Video Sync
467         pos->audio_frames_per_video_frame = frame_rate() / timecode_frames_per_second();
468         pos->valid = jack_position_bits_t (pos->valid | JackAudioVideoRatio);
469 #endif
470
471 #if 0
472         /* Timecode info */
473
474         pos->timecode_offset = 0;
475         t.timecode_frame_rate = timecode_frames_per_second();
476         pos->valid = jack_position_bits_t (pos->valid | JackPositionTimecode;
477
478         if (_transport_speed) {
479
480                 if (play_loop) {
481
482                         Location* location = _locations.auto_loop_location();
483
484                         if (location) {
485
486                                 t.transport_state = JackTransportLooping;
487                                 t.loop_start = location->start();
488                                 t.loop_end = location->end();
489                                 t.valid = jack_transport_bits_t (t.valid | JackTransportLoop);
490
491                         } else {
492
493                                 t.loop_start = 0;
494                                 t.loop_end = 0;
495                                 t.transport_state = JackTransportRolling;
496
497                         }
498
499                 } else {
500
501                         t.loop_start = 0;
502                         t.loop_end = 0;
503                         t.transport_state = JackTransportRolling;
504
505                 }
506
507         }
508 #endif
509 }
510
511 ARDOUR::nframes_t
512 Session::convert_to_frames_at (nframes_t /*position*/, AnyTime const & any)
513 {
514         double secs;
515
516         switch (any.type) {
517         case AnyTime::BBT:
518                 return _tempo_map->frame_time ( any.bbt);
519                 break;
520
521         case AnyTime::Timecode:
522                 /* XXX need to handle negative values */
523                 secs = any.timecode.hours * 60 * 60;
524                 secs += any.timecode.minutes * 60;
525                 secs += any.timecode.seconds;
526                 secs += any.timecode.frames / timecode_frames_per_second();
527                 return (nframes_t) floor (secs * frame_rate());
528                 break;
529
530         case AnyTime::Seconds:
531                 return (nframes_t) floor (any.seconds * frame_rate());
532                 break;
533
534         case AnyTime::Frames:
535                 return any.frames;
536                 break;
537         }
538
539         return any.frames;
540 }