-
Notifications
You must be signed in to change notification settings - Fork 21
/
ltcdump.c
334 lines (280 loc) · 8.85 KB
/
ltcdump.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
/*
* Copyright (C) 2006, 2008, 2010, 2012 Robin Gareus <[email protected]>
* Copyright (C) 2008-2009 Jan <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <math.h>
#include <getopt.h>
#include <sndfile.h>
#include <ltc.h>
#include "common_ltcdump.h"
#include "ltcframeutil.h"
#define FPRNT_TIME "%lf"
#define TIME_DELIM "\t"
#define LTC_QUEUE_LENGTH 16
#define BUFFER_SIZE 1024
#define TIME_CODE_STRING_SIZE 12
int print_audacity_labels = 0;
int detect_discontinuities = 1;
int detect_framerate = 0;
int verbosity = 1;
int use_date = 0;
void print_header(FILE *outfile) {
fprintf(outfile, "#");
if (use_date)
fprintf(outfile, "%-10s %-5s ", "Date", "Zone");
else
fprintf(outfile, "%-11s", "User bits");
fprintf(outfile, "%-10s | %17s\n", "Timecode", "Pos. (samples)");
}
void print_audacity_label(FILE *outfile, int samplerate, long int startInt, long int endInt, char *label) {
double start, end;
start = (double) startInt / samplerate;
end = (double) endInt / samplerate;
fprintf(outfile, "" FPRNT_TIME TIME_DELIM FPRNT_TIME TIME_DELIM "%s\n", start, end, label);
}
void print_LTC_error(FILE *outfile, int samplerate, long int startInt, long int endInt, char *label) {
if (print_audacity_labels) {
print_audacity_label(outfile, samplerate, startInt, endInt, label);
} else {
if (use_date)
fprintf(outfile, "%-16s ", "");
fprintf(outfile, "%-20s %8lu %8lu\n", label, startInt, endInt);
}
}
void print_LTC_info(FILE *outfile, int samplerate, LTCFrameExt frame, SMPTETimecode stime) {
if (print_audacity_labels) {
char timeCodeString[TIME_CODE_STRING_SIZE];
snprintf(timeCodeString, TIME_CODE_STRING_SIZE,
"%02d:%02d:%02d:%02d",
stime.hours % 100, stime.mins % 100,
stime.secs % 100, stime.frame % 100
);
print_audacity_label(outfile, samplerate, frame.off_start, frame.off_end, timeCodeString);
} else {
if (use_date)
fprintf(outfile, "%04d-%02d-%02d %s ",
((stime.years < 67) ? 2000+stime.years : 1900+stime.years),
stime.months,
stime.days,
stime.timezone
);
else
print_user_bits(outfile, &frame.ltc);
fprintf(outfile, "%02d:%02d:%02d%c%02d | %8lld %8lld%s\n",
stime.hours,
stime.mins,
stime.secs,
(frame.ltc.dfbit) ? '.' : ':',
stime.frame,
frame.off_start,
frame.off_end,
frame.reverse ? " R" : " "
);
}
}
int ltcdump(char *filename, int fps_num, int fps_den, int channel) {
ltcsnd_sample_t sound[BUFFER_SIZE];
float *interleaved = NULL;
FILE * outfile = stdout;
size_t n;
long long int total = 0;
int expected_fps = ceil((double)fps_num/fps_den); // or -1
SNDFILE * m_sndfile;
SF_INFO sfinfo;
LTCDecoder *decoder;
LTCFrameExt frame;
int print_missing_frame_info;
m_sndfile = sf_open(filename, SFM_READ, &sfinfo);
if (SF_ERR_NO_ERROR != sf_error( m_sndfile)) {
fprintf(stderr, "Error: This is not a sndfile supported audio file format\n");
return -1;
}
if (sfinfo.frames==0) {
fprintf(stderr, "Error: This is an empty audio file\n");
return -1;
}
if (channel > sfinfo.channels) channel=sfinfo.channels;
if (channel < 1) channel=1;
if (sfinfo.channels!=1 && verbosity > 0) {
fprintf(stderr, "Note: This is not a mono audio file - using channel %i\n", channel);
}
interleaved=calloc(sfinfo.channels*BUFFER_SIZE, sizeof(float));
if (print_audacity_labels) {
verbosity = 0;
print_missing_frame_info = 1;
} else {
print_missing_frame_info = (verbosity > 1);
}
if (verbosity > 1) {
fprintf(outfile, "#SND: file = %s\n", filename);
fprintf(outfile, "#LTC: analyzed channel = %d\n", channel);
fprintf(outfile, "#SND: sample rate = %i\n", sfinfo.samplerate);
}
if (verbosity > 2) {
fprintf(outfile, "#LTC: frames/sec = %i/%i\n", fps_num, fps_den);
}
if (!print_audacity_labels) {
print_header(outfile);
}
long int ltc_frame_length_samples = sfinfo.samplerate * fps_den / fps_num;
long int ltc_frame_length_fudge = (ltc_frame_length_samples * 101 / 100);
long int prev_read = ltc_frame_length_samples;
LTCFrameExt prev_frame;
decoder = ltc_decoder_create(sfinfo.samplerate * fps_den / fps_num, LTC_QUEUE_LENGTH);
channel-=1; // channel-number starts counting at 1.
do {
int i;
n = sf_readf_float(m_sndfile, interleaved, BUFFER_SIZE);
for (i=0;i<n; i++)
sound[i]= 128 + interleaved[sfinfo.channels*i+channel] * 127;
ltc_decoder_write(decoder, sound, n, total);
if (print_missing_frame_info) {
long int fudge = prev_read + ltc_frame_length_fudge;
if (total > fudge) {
print_LTC_error(outfile, sfinfo.samplerate, prev_read, prev_read + ltc_frame_length_samples, "No LTC frame found");
prev_read = total;
}
}
while (ltc_decoder_read(decoder,&frame)) {
SMPTETimecode stime;
ltc_frame_to_time(&stime, &frame.ltc, use_date);
#if 0 // XXX
if (1) { // print start time referece in audio-samples
double off = frame_to_ms(&f, fps_num, fps_den);
off *= sfinfo.samplerate;
off /= 1000.0;
off -= frame.off_start;
printf("%f\n", off);
return 0;
}
#endif
if (detect_framerate) {
detect_fps(&expected_fps, &frame, &stime, print_audacity_labels?NULL:outfile);
}
if (detect_discontinuities && expected_fps > 0) {
if (detect_discontinuity(&frame, &prev_frame, expected_fps, use_date, 0)) {
fprintf(outfile, "#DISCONTINUITY\n");
}
}
print_LTC_info(outfile, sfinfo.samplerate, frame, stime);
prev_read = frame.off_end;
if (frame.reverse) prev_read += ltc_frame_length_samples;
}
total += n;
} while (n);
sf_close(m_sndfile);
free(interleaved);
return 0;
}
static void usage (int status) {
printf ("ltcdump - parse linear time code from a audio-file.\n\n");
printf ("Usage: ltcdump [ OPTIONS ] <filename>\n\n");
printf ("Options:\n\
-a write audacity label file-format\n\
-c, --channel <num> decode LTC from given audio-channel (first = 1)\n\
-d, --decodedate decode date from LTC frame\n\
-f, --fps <num>[/den] set expected [initial] framerate\n\
-F, --detectfps autodetect framerate from LTC (recommended)\n\
-h, --help display this help and exit\n\
-V, --version print version information and exit\n\
\n");
printf ("\n\
Channel count starts at '1', which is also the default channel to analyze.\n\
\n\
The fps option is only needed to properly track the first LTC frame,\n\
and timecode discontinuity notification.\n\
The LTC-decoder detects and tracks the speed but it takes a few samples\n\
to establish initial synchronization. Setting fps to the expected fps\n\
speeds up the initial sync process. The default is 25/1.\n\
\n");
printf ("Report bugs to Robin Gareus <[email protected]>\n"
"Website and manual: <https://github.com/x42/ltc-tools>\n");
exit (status);
}
static struct option const long_options[] =
{
{"help", no_argument, 0, 'h'},
{"output", required_argument, 0, 'o'},
{"channel", required_argument, 0, 'c'},
{"decodedate", no_argument, 0, 'd'},
{"detectfps", no_argument, 0, 'F'},
{"fps", required_argument, 0, 'f'},
{"signals", no_argument, 0, 's'},
{"verbose", no_argument, 0, 'v'},
{"version", no_argument, 0, 'V'},
{NULL, 0, NULL, 0}
};
int main(int argc, char **argv) {
char* filename;
int channel = 1;
int fps_num=25;
int fps_den=1;
int c;
while ((c = getopt_long (argc, argv,
"a"
"c:" /* channel */
"d"
"f:" /* fps */
"F" /* detect framerate */
"h" /* help */
"v" /* verbose */
"V", /* version */
long_options, (int *) 0)) != EOF)
{
switch (c) {
case 'a':
print_audacity_labels=1;
detect_discontinuities=0;
break;
case 'd':
use_date=1;
break;
case 'F':
detect_framerate = 1;
break;
case 'c':
channel = atoi(optarg);
break;
case 'f':
{
fps_num = atoi(optarg);
char *tmp = strchr(optarg, '/');
if (tmp) fps_den=atoi(++tmp);
}
break;
case 'v':
verbosity++;
break;
case 'V':
printf ("ltcdump version %s\n\n", VERSION);
printf ("Copyright (C) GPL 2006,2012 Robin Gareus <[email protected]>\n");
exit (0);
case 'h':
usage (0);
default:
usage (EXIT_FAILURE);
}
}
if (optind >= argc) {
usage (EXIT_FAILURE);
}
filename = argv[optind];
return ltcdump(filename, fps_num, fps_den, channel);
}