-
Notifications
You must be signed in to change notification settings - Fork 0
/
dcahelper.cpp
519 lines (456 loc) · 12.8 KB
/
dcahelper.cpp
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
#include "dcahelper.h"
#include <qmmp/qmmp.h>
#ifdef WORDS_BIGENDIAN
# define s16_LE(s16,channels) s16_swap (s16, channels)
# define s16_BE(s16,channels) do {} while(0)
# define s32_LE(s32,channels) s32_swap (s32, channels)
# define s32_BE(s32,channels) do {} while(0)
# define u32_LE(u32) ((((u32)&0xff000000)>>24)|(((u32)&0x00ff0000)>>8)|(((u32)&0x0000ff00)<<8)|(((u32)&0x000000ff)<<24))
# define u16_LE(u16) ((((u16)&0xff00)>>8)|(((u16)&0x00ff)<<8))
#else
# define s16_LE(s16,channels) do {} while(0)
# define s16_BE(s16,channels) s16_swap(s16, channels)
# define s32_LE(s32,channels) do {} while(0)
# define s32_BE(s32,channels) s32_swap(s32, channels)
# define u32_LE(u32) (u32)
# define u16_LE(u16) (u16)
#endif
static int channel_remap[][7] = {
// DCA_MONO
{0},
// DCA_CHANNEL
// DCA_STEREO
// DCA_STEREO_SUMDIFF
// DCA_STEREO_TOTAL
{0,1},
{0,1},
{0,1},
{0,1},
//DCA_3F
{0,1,2},
//DCA_2F1R
{0,1,2},
//DCA_3F1R
{0,1,2,3},
//DCA_2F2R
{0,1,2,3},
//DCA_3F2R
{0,1,2,3,4},
//DCA_4F2R
{0,1,2,3,4,5},
/// same with LFE
// DCA_MONO
{0,1},
// DCA_CHANNEL
// DCA_STEREO
// DCA_STEREO_SUMDIFF
// DCA_STEREO_TOTAL
{0,1,2},
{0,1,2},
{0,1,2},
{0,1,2},
//DCA_3F
{1,2,0,3},
//DCA_2F1R
{0,1,3,2},
//DCA_3F1R
{1,2,0,4,3},
//DCA_2F2R
{0,1,4,2,3},
//DCA_3F2R
{1,2,0,5,3,4},
//DCA_4F2R
{1,2,5,3,4,6,7} // FL|FR|LFE|FLC|FRC|RL|RR
};
struct wavfmt_t
{
uint16_t wFormatTag;
uint16_t nChannels;
uint32_t nSamplesPerSec;
uint32_t nAvgBytesPerSec;
uint16_t nBlockAlign;
uint16_t wBitsPerSample;
uint16_t cbSize;
};
static int64_t dts_open_wav(FILE *fp, wavfmt_t *fmt, int64_t *totalsamples)
{
char riff[4];
if(stdio_read(fp, &riff, 1, sizeof(riff)) != sizeof(riff))
{
return -1;
}
if(strncmp(riff, "RIFF", 4))
{
return -1;
}
uint32_t size;
if(stdio_read(fp, &size, 1, sizeof(size)) != sizeof(size))
{
return -1;
}
size = u32_LE(size);
char type[4];
if(stdio_read(fp, type, 1, sizeof(type)) != sizeof(type))
{
return -1;
}
if(strncmp(type, "WAVE", 4))
{
return -1;
}
// fmt subchunk
char fmtid[4];
if(stdio_read(fp, fmtid, 1, sizeof(fmtid)) != sizeof(fmtid))
{
return -1;
}
if(strncmp(fmtid, "fmt ", 4))
{
return -1;
}
uint32_t fmtsize;
if(stdio_read(fp, &fmtsize, 1, sizeof(fmtsize)) != sizeof(fmtsize))
{
return -1;
}
fmtsize = u32_LE(fmtsize);
if(stdio_read(fp, fmt, 1, sizeof(wavfmt_t)) != sizeof(wavfmt_t))
{
return -1;
}
fmt->wFormatTag = u16_LE(fmt->wFormatTag);
fmt->nChannels = u16_LE(fmt->nChannels);
fmt->nSamplesPerSec = u32_LE(fmt->nSamplesPerSec);
fmt->nAvgBytesPerSec = u32_LE(fmt->nAvgBytesPerSec);
fmt->nBlockAlign = u16_LE(fmt->nBlockAlign);
fmt->wBitsPerSample = u16_LE(fmt->wBitsPerSample);
fmt->cbSize = u16_LE(fmt->cbSize);
if(fmt->wFormatTag != 0x0001 || fmt->wBitsPerSample != 16)
{
return -1;
}
stdio_seek(fp, (int)fmtsize - (int)sizeof(wavfmt_t), SEEK_CUR);
// data subchunk
char data[4];
if(stdio_read(fp, data, 1, sizeof(data)) != sizeof(data))
{
return -1;
}
if(strncmp(data, "data", 4))
{
return -1;
}
uint32_t datasize;
if(stdio_read(fp, &datasize, 1, sizeof(datasize)) != sizeof(datasize))
{
return -1;
}
datasize = u32_LE(datasize);
*totalsamples = datasize / ((fmt->wBitsPerSample >> 3) * fmt->nChannels);
return stdio_tell(fp);
}
static int16_t convert(int32_t i)
{
#ifdef LIBDCA_FIXED
i >>= 15;
#else
i -= 0x43c00000;
#endif
return (i > 32767) ? 32767 : ((i < -32768) ? -32768 : i);
}
static int convert_samples(decode_info *state, int)
{
sample_t *samples = dca_samples(state->state);
int16_t *dst = state->output_buffer + state->remaining * state->channels;
for(int i = 0; i < 256; ++i)
{
for(int c = 0; c < state->channels; ++c)
{
*dst++ = convert(*((int32_t*)(samples + 256 * c)));
}
samples++;
}
state->remaining += 256;
return 0;
}
static int dca_decode_data(decode_info *ddb_state, uint8_t *start, size_t size, int probe)
{
size_t len;
int n_decoded = 0;
uint8_t *end = start + size;
while(true)
{
len = end - start;
if(!len)
{
break;
}
if(len > ddb_state->bufpos - ddb_state->bufptr)
{
len = ddb_state->bufpos - ddb_state->bufptr;
}
memcpy(ddb_state->bufptr, start, len);
ddb_state->bufptr += len;
start += len;
if(ddb_state->bufptr == ddb_state->bufpos)
{
if(ddb_state->bufpos == ddb_state->buf + HEADER_SIZE)
{
const int length = dca_syncinfo(ddb_state->state, ddb_state->buf, &ddb_state->flags, &ddb_state->sample_rate, &ddb_state->bitrate, &ddb_state->frame_length);
if(!length)
{
for(ddb_state->bufptr = ddb_state->buf; ddb_state->bufptr < ddb_state->buf + HEADER_SIZE-1; ++ddb_state->bufptr)
{
ddb_state->bufptr[0] = ddb_state->bufptr[1];
}
continue;
}
else if(probe)
{
return length;
}
ddb_state->bufpos = ddb_state->buf + length;
}
else
{
if(!ddb_state->disable_adjust)
{
ddb_state->flags |= DCA_ADJUST_LEVEL;
}
constexpr sample_t bias = 384;
level_t level = (level_t)ddb_state->gain;
if(dca_frame(ddb_state->state, ddb_state->buf, &ddb_state->flags, &level, bias))
{
goto error;
}
if(ddb_state->disable_dynrng)
{
dca_dynrng(ddb_state->state, nullptr, nullptr);
}
for(int i = 0; i < dca_blocks_num(ddb_state->state); ++i)
{
if(dca_block(ddb_state->state))
{
goto error;
}
// at this stage we can call dca_samples to get pointer to samples buffer
convert_samples(ddb_state, ddb_state->flags);
n_decoded += 256;
}
ddb_state->bufptr = ddb_state->buf;
ddb_state->bufpos = ddb_state->buf + HEADER_SIZE;
continue;
error:
ddb_state->bufptr = ddb_state->buf;
ddb_state->bufpos = ddb_state->buf + HEADER_SIZE;
}
}
}
return n_decoded;
}
DCAHelper::DCAHelper(const QString &path)
: m_path(path)
{
m_info = (decode_info*)calloc(sizeof(decode_info), 1);
}
DCAHelper::~DCAHelper()
{
deinit();
}
void DCAHelper::deinit()
{
if(m_info)
{
if(m_info->state)
{
dca_free(m_info->state);
}
if(m_info->file)
{
stdio_close(m_info->file);
}
free(m_info);
}
}
bool DCAHelper::initialize()
{
m_info->file = stdio_open(qPrintable(m_path));
if(!m_info->file)
{
qWarning("DCAHelper: open file failed");
return false;
}
wavfmt_t fmt;
int64_t total = -1;
// WAV format
if((m_info->offset = dts_open_wav(m_info->file, &fmt, &total)) == -1)
{
total = -1;
m_info->offset = 0;
m_info->bits_per_sample = 16;
}
else
{
m_info->bits_per_sample = fmt.wBitsPerSample;
m_info->channels = fmt.nChannels;
m_info->sample_rate = fmt.nSamplesPerSec;
m_info->length = (float)total / fmt.nSamplesPerSec * 1000;
}
m_info->gain = 1;
m_info->bufptr = m_info->buf;
m_info->bufpos = m_info->buf + HEADER_SIZE;
m_info->state = dca_init(0);
if(!m_info->state)
{
qWarning("DCAHelper: dts_open_wav get state error");
return false;
}
// prebuffer 1st piece, and get decoded samplerate and nchannels
const size_t rd = stdio_read(m_info->file, m_info->inbuf, 1, BUFFER_SIZE);
const int len = dca_decode_data(m_info, m_info->inbuf, rd, 1);
if(!len)
{
qWarning("DCAHelper: dca_decode_data error");
return false;
}
m_info->bufptr = m_info->buf;
m_info->bufpos = m_info->buf + HEADER_SIZE;
m_info->frame_byte_size = len;
const int flags = m_info->flags &~ (DCA_LFE | DCA_ADJUST_LEVEL);
switch(flags)
{
case DCA_MONO:
qDebug("DCAHelper: mono");
m_info->channels = 1;
break;
case DCA_CHANNEL:
case DCA_STEREO:
case DCA_DOLBY:
case DCA_STEREO_SUMDIFF:
case DCA_STEREO_TOTAL:
qDebug("DCAHelper: stereo");
m_info->channels = 2;
break;
case DCA_3F:
case DCA_2F1R:
qDebug("DCAHelper: 3F or 2F1R");
m_info->channels = 3;
break;
case DCA_2F2R:
case DCA_3F1R:
qDebug("DCAHelper: 2F2R or 3F1R");
m_info->channels = 4;
break;
case DCA_3F2R:
qDebug("DCAHelper: 3F2R");
m_info->channels = 5;
break;
case DCA_4F2R:
qDebug("DCAHelper: 4F2R");
m_info->channels = 6;
break;
}
if(m_info->flags & DCA_LFE)
{
qDebug("DCAHelper: LFE");
m_info->channels++;
}
if(!m_info->channels)
{
qWarning("DCAHelper: dts invalid numchannels");
return false;
}
// calculate duration
if(m_info->length <= 0)
{
total = stdio_length(m_info->file) / len * m_info->frame_length;
m_info->length = (float)total / m_info->sample_rate * 1000;
}
m_info->end_sample = total - 1;
return true;
}
void DCAHelper::seek(qint64 time)
{
const int sample = time * sampleRate() / 1000;
// calculate file offset from framesize / framesamples
const int64_t nframe = sample / m_info->frame_length;
const int64_t offs = m_info->frame_byte_size * nframe + m_info->offset;
stdio_seek(m_info->file, offs, SEEK_SET);
m_info->remaining = 0;
m_info->samples_to_skip = (int)(sample - nframe * m_info->frame_length);
m_info->current_sample = sample;
}
qint64 DCAHelper::read(unsigned char *data, qint64 maxSize)
{
const int sampleSize = channels() * depth() / 8;
if(m_info->end_sample >= 0)
{
if(m_info->current_sample + maxSize / sampleSize > m_info->end_sample)
{
maxSize = (int)((m_info->end_sample - m_info->current_sample + 1) * sampleSize);
if(maxSize <= 0)
{
return 0;
}
}
}
const int initSize = maxSize;
while(maxSize > 0)
{
if(m_info->samples_to_skip > 0 && m_info->remaining > 0)
{
const int skip = MIN(m_info->remaining, m_info->samples_to_skip);
if(skip < m_info->remaining)
{
memmove(m_info->output_buffer, m_info->output_buffer + skip * channels(), (m_info->remaining - skip) * sampleSize);
}
m_info->remaining -= skip;
m_info->samples_to_skip -= skip;
}
if(m_info->remaining > 0)
{
int n = maxSize / sampleSize;
n = MIN(n, m_info->remaining);
if(!(m_info->flags & DCA_LFE))
{
memcpy(data, m_info->output_buffer, n * sampleSize);
data += n * sampleSize;
}
else
{
int chmap = (m_info->flags & DCA_CHANNEL_MASK) &~ DCA_LFE;
if(m_info->flags & DCA_LFE)
{
chmap += 11;
}
// remap channels
char *in = (char *)m_info->output_buffer;
for(int s = 0; s < n; ++s)
{
for(int i = 0; i < channels(); ++i)
{
((int16_t *)data)[i] = ((int16_t*)in)[channel_remap[chmap][i]];
}
in += sampleSize;
data += sampleSize;
}
}
if(m_info->remaining > n)
{
memmove(m_info->output_buffer, m_info->output_buffer + n * channels(), (m_info->remaining - n) * sampleSize);
}
maxSize -= n * sampleSize;
m_info->remaining -= n;
}
if(maxSize > 0 && !m_info->remaining)
{
const size_t rd = stdio_read(m_info->file, m_info->inbuf, 1, BUFFER_SIZE);
if(!dca_decode_data(m_info, m_info->inbuf, rd, 0))
{
break;
}
}
}
m_info->current_sample += (initSize - maxSize) / sampleSize;
return initSize - maxSize;
}