forked from x42/libtimecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimecode.c
800 lines (672 loc) · 21 KB
/
timecode.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
/*
libtimecode - convert A/V timecode and framerate
Copyright (C) 2006, 2007, 2008, 2012 Robin Gareus <[email protected]>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "timecode/timecode.h"
/*****************************************************************************
* misc & helper functions
*/
#define TCtoDbl(r) ( (double)((r)->num) / (double)((r)->den) )
double timecode_rate_to_double(TimecodeRate const * const r) {
return TCtoDbl(r);
}
double timecode_frames_per_timecode_frame(TimecodeRate const * const r, const double samplerate) {
return (samplerate / TCtoDbl(r));
}
/*****************************************************************************
* timecode <> sample,frame-number
*/
int64_t timecode_to_sample (TimecodeTime const * const t, TimecodeRate const * const r, const double samplerate) {
const double fps_d = TCtoDbl(r);
const int64_t fps_i = ceil(fps_d);
const double frames_per_timecode_frame = samplerate / fps_d;
int64_t sample;
if (r->drop) {
int64_t totalMinutes = 60 * t->hour + t->minute;
int64_t frameNumber = fps_i * 3600 * t->hour + fps_i * 60 * t->minute
+ fps_i * t->second + t->frame
- 2 * (totalMinutes - totalMinutes / 10);
sample = frameNumber * samplerate / fps_d;
} else {
sample = (int64_t) rint(
(
((t->hour * 60 * 60) + (t->minute * 60) + t->second)
* (fps_i * frames_per_timecode_frame)
)
+ (t->frame * frames_per_timecode_frame));
}
if (r->subframes != 0) {
sample += rint((double)t->subframe * frames_per_timecode_frame / (double)r->subframes);
}
return sample;
}
void timecode_sample_to_time (TimecodeTime * const t, TimecodeRate const * const r, const double samplerate, const int64_t sample) {
const double fps_d = TCtoDbl(r);
const int64_t fps_i = ceil(fps_d);
if (r->drop) {
int64_t frameNumber = floor( (double)sample * fps_d / samplerate );
/* there are 17982 frames in 10 min @ 29.97df */
const int64_t D = frameNumber / 17982;
const int64_t M = frameNumber % 17982;
t->subframe = rint(r->subframes * ((double)sample * fps_d / samplerate - (double)frameNumber));
if (t->subframe == r->subframes && r->subframes != 0) {
t->subframe = 0;
frameNumber++;
}
frameNumber += 18*D + 2*((M - 2) / 1798);
t->frame = frameNumber % 30;
t->second = (frameNumber / 30) % 60;
t->minute = ((frameNumber / 30) / 60) % 60;
t->hour = (((frameNumber / 30) / 60) / 60);
} else {
double timecode_frames_left_exact;
double timecode_frames_fraction;
int64_t timecode_frames_left;
const double frames_per_timecode_frame = samplerate / fps_d;
const int64_t frames_per_hour = (int64_t)(3600 * fps_i * frames_per_timecode_frame);
t->hour = sample / frames_per_hour;
double sample_d = sample % frames_per_hour;
timecode_frames_left_exact = sample_d / frames_per_timecode_frame;
timecode_frames_fraction = timecode_frames_left_exact - floor( timecode_frames_left_exact );
t->subframe = (int32_t) rint(timecode_frames_fraction * r->subframes);
timecode_frames_left = (int64_t) floor (timecode_frames_left_exact);
if (t->subframe == r->subframes && r->subframes != 0) {
t->subframe = 0;
timecode_frames_left++;
}
t->minute = timecode_frames_left / (fps_i * 60);
timecode_frames_left = timecode_frames_left % (fps_i * 60);
t->second = timecode_frames_left / fps_i;
t->frame = timecode_frames_left % fps_i;
}
}
int64_t timecode_to_framenumber (TimecodeTime const * const t, TimecodeRate const * const r) {
return timecode_to_sample(t, r, TCtoDbl(r));
}
void timecode_framenumber_to_time (TimecodeTime * const t, TimecodeRate const * const r, const int64_t frameno) {
timecode_sample_to_time(t, r, TCtoDbl(r), frameno);
}
void timecode_convert_rate (TimecodeTime * const t_out, TimecodeRate const * const r_out, TimecodeTime * const t_in, TimecodeRate const * const r_in) {
//const double rate = 84672000; // LCM(192k, 88.2k, 24, 25, 30)
//const double rate = TCtoDbl(r_out) < TCtoDbl(r_in) ? (TCtoDbl(r_in) * r_in->subframes) : (TCtoDbl(r_out) * r_out->subframes);
const double rate = TCtoDbl(r_out) < TCtoDbl(r_in) ? TCtoDbl(r_in) : TCtoDbl(r_out);
int64_t s = timecode_to_sample(t_in, r_in, rate);
timecode_sample_to_time(t_out, r_out, rate, s);
}
/*****************************************************************************
* float seconds
*/
double timecode_sample_to_seconds (const int64_t sample, double samplerate) {
return (double)sample / samplerate;
}
int64_t timecode_seconds_to_sample (const double sec, double samplerate) {
return rint(sec * samplerate);
}
double timecode_framenumber_to_seconds (const int64_t frameno, TimecodeRate const * const r) {
return (double)frameno / TCtoDbl(r);
}
int64_t timecode_seconds_to_framenumber (const double sec, TimecodeRate const * const r) {
return floor(sec * TCtoDbl(r));
}
void timecode_seconds_to_time (TimecodeTime * const t, TimecodeRate const * const r, const double sec) {
const double rate = TCtoDbl(r) * (r->subframes != 0 ? r->subframes : 1.0);
timecode_sample_to_time(t, r, rate,
timecode_seconds_to_sample(sec, rate));
}
double timecode_to_sec (TimecodeTime const * const t, TimecodeRate const * const r) {
const double rate = TCtoDbl(r) * (r->subframes != 0 ? r->subframes : 1.0);
return timecode_sample_to_seconds(timecode_to_sample(t, r, rate), rate);
}
/*****************************************************************************
* Add Subtract
*/
static int32_t timecode_move_time_overflow(TimecodeTime * const t, TimecodeRate const * const r) {
int i;
int32_t rv = 0;
int32_t * const bcd[6] = {&t->subframe, &t->frame, &t->second, &t->minute, &t->hour, &rv };
int smpte_table[6] = {1, 1, 60, 60, 24, 0 };
smpte_table[0] = r->subframes;
smpte_table[1] = ceil(TCtoDbl(r));
for (i=0; i<5; i++) {
if ((*bcd[i] >= smpte_table[i]) || (*bcd[i] < 0) ) {
if (smpte_table[i] == 0) continue;
int ov= (int) floor((double) (*bcd[i]) / smpte_table[i]);
#if 0
// TODO drop-frames ? - basically only needed when parsing invalid TC
// via timecode_parse_time()
if (r->drop && i==2) minutes_crossed += ov;
if (r->drop && i==3) minutes_crossed += ov * 60;
//if (r->drop && i==4) minutes_crossed += ov * 60 * 24;
#endif
*bcd[i] -= ov*(smpte_table[i]);
if (bcd[i+1]) { *bcd[i+1]+=ov; }
}
}
#if 0
if (r->drop) {
// 108 drop-frames per hour, but..
}
#endif
return rv;
}
int timecode_date_is_valid(TimecodeDate * const d) {
unsigned char dpm[12] = {31,28,31,30,31,30,31,31,30,31,30,31};
if (d->month < 1 || d->month > 12) return 1;
if ( (d->year%4)==0 && ( (d->year%100) != 0 || (d->year%400) == 0) ) { dpm[1]=29; } else { dpm[1]=28; }
if (d->day < 1 || d->day > dpm[d->month-1]) return 2;
return 0;
}
void timecode_move_date_overflow(TimecodeDate * const d) {
unsigned char dpm[12] = {31,28,31,30,31,30,31,31,30,31,30,31};
while (timecode_date_is_valid(d)) {
if (d->month > 12) {
d->year += (d->month-1)/12;
d->month = 1 + ((d->month-1)%12);
}
if (d->month < 1) {
d->year -= (12-d->month)/12;
d->month = 12 - ((12-d->month)%12);
}
if ( (d->year%4)==0 && ( (d->year%100) != 0 || (d->year%400) == 0) ) { dpm[1]=29; } else { dpm[1]=28; }
if (d->day > dpm[d->month-1]) {
d->day-= dpm[(d->month-1)%12];
d->month++;
if (d->month > 12) {
d->month -= 12;
d->year++;
}
}
if (d->day < 1) {
d->month--;
if (d->month < 1) {
d->month += 12;
d->year--;
d->day+= dpm[(d->month-1)%12];
}
}
}
}
static int32_t dropped_frames(TimecodeTime const * const t) {
int64_t totalMinutes = 60 * t->hour + t->minute;
return 2 * (totalMinutes - totalMinutes / 10);
}
void timecode_time_add (TimecodeTime * const res, TimecodeRate const * const r, TimecodeTime const * const t1, TimecodeTime const * const t2) {
int df = 0;
if (r->drop) {
df = dropped_frames(t1) + dropped_frames(t2);
}
res->subframe = t1->subframe + t2->subframe;
res->frame = t1->frame + t2->frame ;
res->second = t1->second + t2->second ;
res->minute = t1->minute + t2->minute ;
res->hour = t1->hour + t2->hour ;
if (r->drop) {
timecode_move_time_overflow(res, r);
res->frame += dropped_frames(res) - df;
}
timecode_move_time_overflow(res, r);
}
void timecode_time_subtract (TimecodeTime * const res, TimecodeRate const * const r, TimecodeTime const * const t1, TimecodeTime const * const t2) {
int df = 0;
if (r->drop) {
df = dropped_frames(t1) - dropped_frames(t2);
}
res->subframe = t1->subframe - t2->subframe;
res->frame = t1->frame - t2->frame ;
res->second = t1->second - t2->second ;
res->minute = t1->minute - t2->minute ;
res->hour = t1->hour - t2->hour ;
if (r->drop) {
timecode_move_time_overflow(res, r);
res->frame += dropped_frames(res) - df;
}
timecode_move_time_overflow(res, r);
}
#define CMP(a,b) ( (a) > (b) ? 1 : -1)
int timecode_time_compare (TimecodeRate const * const r, TimecodeTime const * const a, TimecodeTime const * const b) {
if (a->hour != b->hour ) return CMP(a->hour, b->hour);
if (a->minute != b->minute ) return CMP(a->minute, b->minute);
if (a->second != b->second ) return CMP(a->second, b->second);
if (a->frame != b->frame ) return CMP(a->frame, b->frame);
if (a->subframe != b->subframe) return CMP(a->subframe, b->subframe);
return (0);
}
int timecode_date_compare (TimecodeDate const * const a, TimecodeDate const * const b) {
if (a->year != b->year ) return CMP(a->year, b->year);
if (a->month != b->month) return CMP(a->month, b->month);
if (a->day != b->day ) return CMP(a->day, b->day);
// TODO timezone -- check intl. date-line crossing.
if (a->timezone != b->timezone) return CMP(a->timezone, b->timezone);
return (0);
}
int timecode_datetime_compare (TimecodeRate const * const r, Timecode const * const a, Timecode const * const b) {
Timecode ax, bx;
memcpy(&ax, a, sizeof(Timecode));
memcpy(&bx, b, sizeof(Timecode));
/* convert to UTC */
ax.t.minute -= a->d.timezone;
bx.t.minute -= b->d.timezone;
ax.d.timezone = bx.d.timezone = 0;
/* adjust day, month */
int ao = timecode_move_time_overflow(&ax.t, r);
int bo = timecode_move_time_overflow(&bx.t, r);
if (ao < 0) {
int i;
for (i=0; i > ao; --i) {
timecode_date_decrement(&ax.d);
}
} else if (ao > 0) {
int i;
for (i=0; i < ao; ++i) {
timecode_date_increment(&ax.d);
}
}
if (bo < 0) {
int i;
for (i=0; i > bo; --i) {
timecode_date_decrement(&bx.d);
}
} else if (bo > 0) {
int i;
for (i=0; i < bo; ++i) {
timecode_date_increment(&bx.d);
}
}
int rv;
if ((rv=timecode_date_compare(&ax.d, &bx.d)) != 0)
return rv;
return (timecode_time_compare(r, &ax.t, &bx.t));
}
/*****************************************************************************
* Increment/Decrement
*/
void timecode_date_increment(TimecodeDate * const d) {
unsigned char dpm[12] = {31,28,31,30,31,30,31,31,30,31,30,31};
if ( (d->year%4)==0 && ( (d->year%100) != 0 || (d->year%400) == 0) ) {
dpm[1]=29;
}
d->day++;
if (d->day > dpm[d->month-1]) {
d->day=1;
d->month++;
if (d->month > 12) {
d->month = 1;
d->year++;
}
}
}
int timecode_time_increment(TimecodeTime * const t, TimecodeRate const * const r) {
int rv = 0;
const int fps = ceil(TCtoDbl(r));
t->frame++;
if (t->frame < fps) goto done;
t->frame = 0;
t->second++;
if (t->second < 60) goto done;
t->second = 0;
t->minute++;
if (t->minute < 60) goto done;
t->minute = 0;
t->hour++;
if (t->hour < 24) goto done;
t->hour = 0;
rv=1;
done:
if (r->drop && (t->minute%10 != 0) && (t->second == 0) && (t->frame == 0)) {
t->frame += 2;
}
return rv;
}
void timecode_date_decrement (TimecodeDate * const d) {
unsigned char dpm[12] = {31,28,31,30,31,30,31,31,30,31,30,31};
if ( (d->year%4)==0 && ( (d->year%100) != 0 || (d->year%400) == 0) ) {
dpm[1]=29;
}
if (d->day > 1) {
d->day--;
return;
}
d->month = 1 + (d->month + 10)%12;
d->day = dpm[d->month-1];
if (d->month == 12) {
d->year--;
}
}
int timecode_time_decrement(TimecodeTime * const t, TimecodeRate const * const r) {
const int fps = ceil(TCtoDbl(r));
if (r->drop && (t->minute%10 != 0) && (t->second == 0) && (t->frame == 2)) {
; // assume t->frame==0;
} else
if (t->frame > 0) {
t->frame--;
return 0;
}
t->frame = fps-1;
if (t->second > 0) {
t->second--;
return 0;
}
t->second = 59;
if (t->minute > 0) {
t->minute--;
return 0;
}
t->minute = 59;
if (t->hour > 0) {
t->hour--;
return 0;
}
t->hour = 23;
return 1;
}
int timecode_datetime_increment (Timecode * const dt) {
if (timecode_time_increment(&dt->t, &dt->r)) {
timecode_date_increment(&dt->d);
return 1;
}
return 0;
}
int timecode_datetime_decrement (Timecode * const dt) {
if (timecode_time_decrement(&dt->t, &dt->r)) {
timecode_date_decrement(&dt->d);
return 1;
}
return 0;
}
/*****************************************************************************
* Format & Parse
*/
void timecode_time_to_string (char *smptestring, TimecodeTime const * const t) {
snprintf(smptestring, 12, "%02d:%02d:%02d:%02d",
t->hour, t->minute, t->second, t->frame);
}
/* custom version of strncpy - pointer limit, return end of string */
static char *_strlcpy(char *dest, const char *limit, const char *src) {
while (dest < limit && (*dest = *src++) != '\0') ++dest;
return dest;
}
#define _fmtval(dest, limit, format, ...) \
{ \
char tmp[32]; \
snprintf(tmp, 32, format, __VA_ARGS__); \
tmp[31]= '\0'; \
dest = _strlcpy(dest, limit, tmp); \
}
/* follows strftime() where appropriate */
static char *_fmttc(char *p, const char *limit, const char *format, Timecode const * const tc) {
for ( ; *format; ++format) {
if (*format == '%') {
switch (*++format) {
/* misc */
case '\0':
--format;
break;
case 't':
p= _strlcpy(p, limit, "\t");
continue;
/* date, timezone */
case 'm':
_fmtval(p, limit, "%02d", tc->d.month);
continue;
case 'd':
_fmtval(p, limit, "%02d", tc->d.day);
continue;
case 'y':
_fmtval(p, limit, "%02d", tc->d.year%100);
continue;
case 'Y':
_fmtval(p, limit, "%04d", tc->d.year);
continue;
case 'z':
_fmtval(p, limit, "%+03d%02d", tc->d.timezone/60, abs(tc->d.timezone)%60);
continue;
/* frame rate */
case ':':
if (tc->r.drop) {
p= _strlcpy(p, limit, ";");
} else {
p= _strlcpy(p, limit, ":");
}
continue;
case 'f':
if (tc->r.den == 1) {
_fmtval(p, limit, "%d", tc->r.num);
} else {
_fmtval(p, limit, "%.2f", TCtoDbl(&tc->r));
}
if (tc->r.drop) {
p= _strlcpy(p, limit, "df");
}
continue;
/* time, frames */
case 'H':
_fmtval(p, limit, "%02d", tc->t.hour);
continue;
case 'M':
_fmtval(p, limit, "%02d", tc->t.minute);
continue;
case 'S':
_fmtval(p, limit, "%02d", tc->t.second);
continue;
case 'F':
{
int lz = (tc->r.den < 1 || TCtoDbl(&tc->r) <= 1) ? 1 : ceil(log10(TCtoDbl(&tc->r)));
char fmt[8]; snprintf(fmt, 8, "%%0%dd", lz%10);
_fmtval(p, limit, fmt, tc->t.frame);
}
continue;
case 's':
{
int lz = tc->r.subframes < 1 ? 1 : ceil(log10(tc->r.subframes));
char fmt[8]; snprintf(fmt, 8, "%%0%dd", lz%10);
_fmtval(p, limit, fmt, tc->t.subframe);
}
continue;
/* presets */
case 'T':
p = _fmttc(p, limit, "%H:%M:%S%:%F", tc);
continue;
case 'Z':
p = _fmttc(p, limit, "%Y-%m-%d %H:%M:%S%:%F.%s %z @%f fps", tc);
continue;
default:
break; // out of select - ignore the '%'
}
}
if (p == limit)
break; // out of for-loop
*p++ = *format;
}
return p;
}
size_t timecode_strftimecode (char *str, const size_t maxsize, const char *format, Timecode const * const t) {
char *p;
p = _fmttc(str, str + maxsize, ((format == NULL) ? "%c" : format), t);
if (p == str + maxsize) return 0;
*p = '\0';
return p - str;
}
size_t timecode_strftime (char *str, const size_t maxsize, const char *format, TimecodeTime const * const t, TimecodeRate const * const r) {
Timecode tc;
memset(&tc, 0, sizeof(Timecode));
memcpy(&tc.t, t, sizeof(TimecodeTime));
if (r) {
memcpy(&tc.r, r, sizeof(TimecodeRate));
} else {
tc.r.num=tc.r.den=tc.r.subframes=1;
}
return timecode_strftimecode(str, maxsize, format, &tc);
}
/* C99 only defines strpbrk() - this is the reverse version */
static const char *strrpbrk(const char * const haystack, const char * const needle) {
const char *ph, *pn, *rv;
if (!haystack || !needle) return NULL;
for (ph = haystack, rv = NULL ; *ph ; ++ph) {
for (pn = needle; *pn != '\0' ; ++pn) {
if (*pn == *ph) {
rv = ph;
break;
}
}
}
return rv;
}
int32_t timecode_parse_time (TimecodeTime * const t, TimecodeRate const * const r, const char *val) {
int i = 0;
char *buf = strdup(val);
char *pe;
int32_t * const bcd[5] = {&t->frame, &t->second, &t->minute, &t->hour, NULL };
t->subframe = 0;
for (i=0; i<4; i++) {
*bcd[i] = 0;
}
if ((pe= strrchr(buf, '.'))) {
t->subframe = atoi(pe+1);
*pe = '\0';
}
i=0;
while (i < 4 && (pe= (char*) strrpbrk(buf,":;"))) {
*bcd[i] = (int) atoi(pe+1);
*pe = '\0';
i++;
}
if (i < 4 && *buf) {
*bcd[i]= (int) atoi(buf);
}
free(buf);
int32_t rv = timecode_move_time_overflow(t, r);
if (r->drop && (t->minute%10 != 0) && (t->second == 0) && (t->frame == 0)) {
t->frame=2;
}
return rv;
}
void timecode_parse_packed_time (TimecodeTime * const t, const char *val) {
const int bcd = atoi(val);
t->hour = (bcd/1000000)%24;
t->minute = (bcd/10000)%60;
t->second = (bcd/100)%60;
t->frame = (bcd%100);
t->subframe = 0;
}
void timecode_parse_timezone (TimecodeDate * const d, const char *val) {
const int tz = atoi(val);
d->timezone = (tz/100)*60 + (abs(tz)%100);
}
void timecode_parse_framerate (TimecodeRate * const r, const char *val, int flags) {
// TODO clean up flag usage
char *tmp = (char*) strchr(val, '/');
r->num = abs(atoi(val));
if (tmp) {
r->den=abs(atoi(++tmp));
} else {
r->den=1;
}
if (r->den < 1) {
r->den = 1;
}
if (!(flags & 2)) {
r->drop = 0;
}
if (!(flags & 8)) {
if (strstr(val, "ndf")) {
printf("NDF\n");
r->drop = 0;
flags &= ~1;
} else if (strstr(val, "df")) {
printf("DF\n");
r->drop = 1;
flags &= ~1;
}
#if 0
else {
r->drop = 0;
}
#endif
}
if ((flags & 3 ) == 1) {
if (rint(100.0 * TCtoDbl(r)) == 2997.0) {
r->drop = 1;
} else {
r->drop = 0;
}
}
if (!(flags & 4)) {
float lz = log10(TCtoDbl(r));
if (lz < 2) {
r->subframes = 80;
} else {
r->subframes = pow(10, ceil(lz));
}
}
}
/* corresponds to https://github.com/x42/libltc SMPTETimecode */
struct LTCTimecode {
char timezone[6]; ///< "+HHMM" format
unsigned char years; ///< LTC-date uses 2-digit year 00.99
unsigned char months; ///< valid months are 1..12
unsigned char days; ///< day of month 1..31
unsigned char hours; ///< hour 0..23
unsigned char mins; ///< minute 0..60
unsigned char secs; ///< second 0..60
unsigned char frame; ///< sub-second frame 0..{FPS-1}
};
void timecode_parse_libltc_timecode (Timecode * const tc, const void *ltctc) {
struct LTCTimecode *ltc = (struct LTCTimecode*) ltctc;
const int tz = atoi(ltc->timezone);
tc->d.timezone = (tz/100)*60 + (abs(tz)%100);
tc->d.year = ltc->years;
tc->d.month = ltc->months;
tc->d.day = ltc->days;
tc->t.hour = ltc->hours;
tc->t.minute = ltc->mins;
tc->t.second = ltc->secs;
tc->t.frame = ltc->frame;
tc->t.subframe = 0;
}
void timecode_copy_rate (Timecode * const tc, TimecodeRate const * const r) {
memcpy(&tc->r, r, sizeof(TimecodeRate));
}
void timecode_set_rate (Timecode * const tc, const int num, const int den, const int df, const int sf) {
tc->r.num = num;
tc->r.den = den;
tc->r.drop = df;
tc->r.subframes = sf;
}
void timecode_set_time (Timecode * const tc, const int H, const int M, const int S, const int F, const int s) {
tc->t.hour = H;
tc->t.minute = M;
tc->t.second = S;
tc->t.frame = F;
tc->t.subframe = s;
}
void timecode_set_date (Timecode * const tc, const int y, const int m, const int d, const int tz) {
tc->d.year = y;
tc->d.month = m;
tc->d.day = d;
tc->d.timezone = tz;
}
void timecode_reset_unixtime (Timecode * const tc) {
tc->d.year=1970;
tc->d.day=1;
tc->d.month=1;
tc->d.timezone=0;
timecode_set_time(tc, 0, 0, 0, 0, 0);
}