tinywaveout_c.h
17.3 KB
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
/*
* Copyright (c) 2019-2020 Cadence Design Systems, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/*****************************************************************************
(C) Copyright Ericsson AB and Fraunhofer Gesellschaft zur Förderung der
angewandten Forschung e.V. for its Fraunhofer IIS 2018
All Rights Reserved. This software and/or program is protected by copyright
law and international treaties and may solely be used in connection with an
respective Software Evaluation Agreement between the copyright owners and you.
No part of this software may be reproduced in any form without the written
permission of the copyright owners
******************************************************************************/
#ifndef __TINYWAVEOUT_C_H__
#define __TINYWAVEOUT_C_H__
#include <stdio.h>
/*#define SUPPORT_BWF*/
#ifdef SUPPORT_BWF
#include <string.h>
#endif
#if defined(__i386__) || defined(_M_IX86) || defined(_M_X64) || defined(__x86_64__) || defined(__arm__) || defined(__XTENSA__)|| \
defined(__aarch64__)
#define __TWO_LE /* _T_iny _W_ave _O_ut _L_ittle _E_ndian */
#endif
#if defined(__POWERPC__)
#define __TWO_BE /* _T_iny _W_ave _O_ut _B_ig _E_ndian */
#endif
#if defined(__sparc__)
#define __TWO_BE /* _T_iny _W_ave _O_ut _B_ig _E_ndian */
#endif
#if !defined(__TWO_LE) && !defined(__TWO_BE)
#error unknown processor
#endif
#define __TWO_SUCCESS (0)
#define __TWO_ERROR (-1)
/*--- local types/structs ----------------------------------*/
#if defined(_MSC_VER)
#pragma pack(push, 1)
#else
#pragma pack(1)
#endif
#ifndef TW_INT64
#if !(defined(WIN32))
#define TWO_INT64 long long
#else
#define TWO_INT64 __int64
#endif
#endif
#ifdef SUPPORT_BWF
typedef struct
{
float loudnessVal;
float loudnessRange;
float maxTruePeakLevel;
float maxMomentaryLoudnes;
float maxShortTermLoudness;
} LOUDNESSINFO;
#else
typedef void LOUDNESSINFO;
#endif
typedef struct __tinyWaveOutHeader
{
unsigned int riffType;
unsigned int riffSize;
unsigned int waveType;
} __tinyWaveOutHeader;
#ifdef SUPPORT_BWF
typedef struct __tinyWaveOutBextChunk
{
unsigned int formatType; /* = 'bext' */
unsigned int formatSize; /* size info */
unsigned char description[256];
unsigned char originator[32];
unsigned char originatorReference[32];
unsigned char originatorDate[10]; /* ASCII: <<yyyy:mm:dd>> */
unsigned char originationTime[8]; /* ASCII: <<hh:mm:ss>> */
unsigned int timeReferenceLow;
unsigned int timeReferenceHigh;
unsigned short version;
unsigned char UMID[64]; /* Binary Bytes of SMPTE UMID */
signed short loudnessVal;
signed short loudnessRange;
signed short maxTruePeakLevel;
signed short maxMomentaryLoudnes;
signed short maxShortTermLoudness;
unsigned char Reserved[180];
unsigned char codingHistory; /* ASCII: <<History coding>> - undefined length! */
/* for variable length, mve this out of this struct */
} __tinyWaveOutBextChunk;
#endif
typedef struct __tinyWaveOutFmtChunk
{
unsigned int formatType;
unsigned int formatSize;
unsigned short formatTag;
unsigned short numChannels;
unsigned int sampleRate;
unsigned int bytesPerSecond;
unsigned short blockAlignment;
unsigned short bitsPerSample;
/* wav fmt ext hdr here */
} __tinyWaveOutFmtChunk;
typedef struct __tinyWaveOutDataChunk
{
unsigned int dataType;
unsigned int dataSize;
} __tinyWaveOutDataChunk;
typedef struct __tinyWaveOutHandle
{
FILE * theFile;
unsigned int dataSize;
TWO_INT64 dataSizeLimit;
unsigned int fmtChunkOffset;
#ifdef SUPPORT_BWF
unsigned int bextChunkOffset;
#endif
unsigned int dataChunkOffset;
unsigned int bps;
unsigned int clipCount;
} __tinyWaveOutHandle, WAVEFILEOUT;
/*--- local protos --------------------------------------------------*/
static __inline unsigned int BigEndian32(char, char, char, char);
static __inline unsigned int LittleEndian32(unsigned int);
static __inline unsigned int LittleEndian32s(int);
static __inline short LittleEndian16(short);
#ifdef SUPPORT_BWF
static unsigned int EncodeLoudness(float);
#endif
static __inline int __dataSizeChk(WAVEFILEOUT *self, int newbytes);
#if defined(_MSC_VER)
#pragma pack(pop)
#else
#pragma pack()
#endif
#ifdef SUPPORT_BWF
static void setDefaultLoudness(LOUDNESSINFO *x)
{
x->loudnessVal = 1.0f;
x->loudnessRange = 2.0f;
x->maxTruePeakLevel = 3.0f;
x->maxMomentaryLoudnes = 4.0f;
x->maxShortTermLoudness = 5.0f;
}
#endif
static WAVEFILEOUT *CreateBWF(const char *fileName, const unsigned int sampleRate, const unsigned int numChannels,
const unsigned int bps
/* const unsigned int writeWaveExt */
#ifdef SUPPORT_BWF
,
const LOUDNESSINFO *hBwfData
#endif
)
{
WAVEFILEOUT * self;
__tinyWaveOutHeader whdr;
#ifdef SUPPORT_BWF
__tinyWaveOutBextChunk wbextch;
#endif
__tinyWaveOutFmtChunk wfch;
__tinyWaveOutDataChunk wdch;
unsigned int blockAlignment = 0;
unsigned int ByteCnt = 0; /* Byte counter for fwrite */
self = (WAVEFILEOUT *)calloc(1, sizeof(WAVEFILEOUT));
if (!self)
goto bail; /* return NULL; */
if (!fileName)
goto bail;
if (sampleRate == 0)
goto bail;
if (sampleRate > 192000)
goto bail;
if (numChannels == 0)
goto bail;
if (numChannels > 48)
goto bail;
if (bps != 16 && bps != 24 && bps != 32)
goto bail;
self->theFile = fopen(fileName, "wb+");
if (!self->theFile)
goto bail;
/* WAV-Header */
whdr.riffType = BigEndian32('R', 'I', 'F', 'F');
whdr.riffSize = LittleEndian32(0xffffffff); /* set to maximum, if fseek() doesn't work later */
whdr.waveType = BigEndian32('W', 'A', 'V', 'E');
/* write to file */
ByteCnt = 0;
ByteCnt += fwrite(&whdr, 1, sizeof(whdr), self->theFile);
#ifdef SUPPORT_BWF
/* BEXT-Chunk */
if (hBwfData)
{
memset(&wbextch, 0, sizeof(__tinyWaveOutBextChunk));
wbextch.formatType = BigEndian32('b', 'e', 'x', 't');
wbextch.formatSize = LittleEndian32(sizeof(__tinyWaveOutBextChunk) - 8);
wbextch.version = 0x0002;
wbextch.loudnessVal = EncodeLoudness(hBwfData->loudnessVal);
wbextch.loudnessRange = EncodeLoudness(hBwfData->loudnessRange);
wbextch.maxTruePeakLevel = EncodeLoudness(hBwfData->maxTruePeakLevel);
wbextch.maxMomentaryLoudnes = EncodeLoudness(hBwfData->maxMomentaryLoudnes);
wbextch.maxShortTermLoudness = EncodeLoudness(hBwfData->maxShortTermLoudness);
/* t.b.d.: more values */
/* write to file */
self->bextChunkOffset = ByteCnt;
ByteCnt += fwrite(&wbextch, 1, sizeof(wbextch), self->theFile);
}
#endif
/* FMT-Chunk */
wfch.formatType = BigEndian32('f', 'm', 't', ' ');
wfch.formatSize = LittleEndian32(16);
switch (bps)
{
case 16:
case 24:
wfch.formatTag = LittleEndian16(0x0001); /* WAVE_FORMAT_PCM */
break;
case 32:
// wfch.formatTag = LittleEndian16(0x0003); /* WAVE_FORMAT_IEEE_FLOAT */
wfch.formatTag = LittleEndian16(0x0001); /* WAVE_FORMAT_PCM */
break;
default: goto bail;
}
self->bps = bps;
wfch.bitsPerSample = LittleEndian16(bps);
wfch.numChannels = LittleEndian16(numChannels);
blockAlignment = numChannels * (bps >> 3);
wfch.blockAlignment = LittleEndian16(blockAlignment);
wfch.sampleRate = LittleEndian32(sampleRate);
wfch.bytesPerSecond = LittleEndian32(sampleRate * blockAlignment);
/* tbd: wavfmt ext hdr here */
/* write to file */
self->fmtChunkOffset = ByteCnt;
ByteCnt += fwrite(&wfch, 1, sizeof(wfch), self->theFile);
/* DATA-Chunk */
self->dataChunkOffset = ByteCnt;
wdch.dataType = BigEndian32('d', 'a', 't', 'a');
wdch.dataSize = LittleEndian32(0xffffffff - ByteCnt); /* yet unknown. set to maximum */
/* write to file */
ByteCnt += fwrite(&wdch, 1, sizeof(wdch), self->theFile);
self->dataSizeLimit = LittleEndian32(0xffffffff - ByteCnt); /* maximum size for data chunk for 4 GB files */
/* self->dataSizeLimit = LittleEndian32(0x7fffffff - ByteCnt); */ /* maximum size for data chunk for 2 GB files */
self->clipCount = 0;
return self;
bail:
free(self);
return NULL;
}
static WAVEFILEOUT *CreateWav(const char *fileName, const unsigned int sampleRate, const unsigned int numChannels,
const unsigned int bps
/* const unsigned int writeWaveExt */
)
{
return CreateBWF(fileName, sampleRate, numChannels, bps);
}
#define MAX_PCM16 (+32767)
#define MIN_PCM16 (-32768)
static __inline int CLIP_PCM16(int sample, unsigned int *clipcount)
{
int tmp = sample;
if (sample >= MAX_PCM16)
{
tmp = MAX_PCM16;
(*clipcount)++;
}
else
{
if (sample <= MIN_PCM16)
{
tmp = MIN_PCM16;
(*clipcount)++;
}
}
return tmp;
}
#define MAX_PCM24 (+8388607)
#define MIN_PCM24 (-8388608)
static __inline int CLIP_PCM24(int sample, unsigned int *clipcount)
{
int tmp = sample;
if (sample >= MAX_PCM24)
{
tmp = MAX_PCM24;
(*clipcount)++;
}
else
{
if (sample <= MIN_PCM24)
{
tmp = MIN_PCM24;
(*clipcount)++;
}
}
return tmp;
}
#define MAX_FLOAT32 (+1.0f)
#define MIN_FLOAT32 (-1.0f)
static __inline float CLIP_FLOAT32(float sample, unsigned int *clipcount)
{
float tmp = sample;
if (sample >= MAX_FLOAT32)
{
tmp = MAX_FLOAT32;
(*clipcount)++;
}
else
{
if (sample <= MIN_FLOAT32)
{
tmp = MIN_FLOAT32;
(*clipcount)++;
}
}
return tmp;
}
static int __WriteSample16(WAVEFILEOUT *self, int sample)
{
size_t cnt;
short v;
v = (short)CLIP_PCM16(sample, &(self->clipCount));
#ifdef __TWO_BE
v = LittleEndian16(v);
#endif
cnt = fwrite(&v, sizeof(short), 1, self->theFile);
if (cnt == 1)
{
self->dataSize += 2;
return __TWO_SUCCESS;
}
return __TWO_ERROR;
}
static int __WriteSample24(WAVEFILEOUT *self, int sample)
{
size_t cnt;
int v;
v = (int)CLIP_PCM24(sample, &(self->clipCount));
#ifdef __TWO_BE
v = LittleEndian32s(v);
#endif
cnt = fwrite(&v, 3, 1, self->theFile);
if (cnt == 1)
{
self->dataSize += 3;
return __TWO_SUCCESS;
}
return __TWO_ERROR;
}
static int __WriteSample32(WAVEFILEOUT *self, int sample)
{
size_t cnt;
int v = 0;
v = sample << 8;
#ifdef __TWO_BE
v = LittleEndian32s(v);
#endif
cnt = fwrite(&v, 4, 1, self->theFile);
if (cnt == 1)
{
self->dataSize += 4;
return __TWO_SUCCESS;
}
return __TWO_ERROR;
}
static int __WriteSampleInt(WAVEFILEOUT *self, int sample, int scale)
{
int err;
if (!self)
return __TWO_ERROR;
switch (scale)
{
case 16: err = __WriteSample16(self, sample); break;
case 24: err = __WriteSample24(self, sample); break;
case 32: err = __WriteSample32(self, sample); break;
default: err = __TWO_ERROR; break;
}
return err;
}
/* this function expects values in the 24 bit range +-8388607/8 */
static int WriteWavLong(WAVEFILEOUT *self, int sampleBuffer[], unsigned int nSamples)
{
unsigned long i;
int err = __TWO_SUCCESS;
if (!self)
return __TWO_ERROR;
if (!sampleBuffer)
return __TWO_ERROR;
if (__dataSizeChk(self, nSamples * sizeof(int)))
return __TWO_ERROR;
for (i = 0; i < nSamples; i++)
{
err = __WriteSampleInt(self, sampleBuffer[i], self->bps);
}
if (err != __TWO_SUCCESS)
return err;
return __TWO_SUCCESS;
}
/* this function expects normalized values in the range +-1.0 */
#define MAX_FL (+2.0f * 8388608.0f)
#define MIN_FL (-2.0f * 8388608.0f)
#define CLIP_FL(x) (((x) >= MAX_FL) ? MAX_FL : (((x) <= MIN_FL) ? MIN_FL : (x)))
/* static int WriteWavFloat(
WAVEFILEOUT* self,
float sampleBuffer[],
unsigned int nSamples
)
{
unsigned int i;
int err = __TWO_SUCCESS;
if (!self) return __TWO_ERROR;
if (!sampleBuffer) return __TWO_ERROR;
if (__dataSizeChk(self, nSamples * sizeof(float))) return __TWO_ERROR;
for (i=0; i<nSamples; i++) {
if(self->bps == 32)
{
err = __WriteSample32(self, sampleBuffer[i]);
}
else
{
float tmp = CLIP_FL(sampleBuffer[i] * 8388608.0f);
err = __WriteSampleInt(self, (int) tmp, 24);
}
if (err != __TWO_SUCCESS) return err;
}
return __TWO_SUCCESS;
}
*/
static int CloseWav(WAVEFILEOUT *self)
{
unsigned int riffSize_le = 0;
unsigned int dataSize_le = 0;
if (!self)
return __TWO_ERROR;
riffSize_le = LittleEndian32(self->dataChunkOffset - 8 + 8 +
self->dataSize); /* sizeof(hdr) - (8 bytes of riff chunk header) + (8 bytes data chunk
header) + sizeof(raw-pcm-data) */
dataSize_le = LittleEndian32(self->dataSize);
#ifndef __NO_FSEEK
/* fseek(self->theFile, 0, SEEK_SET);*/
/* seek to riffsize */
fseek(self->theFile, 4, SEEK_SET);
fwrite(&riffSize_le, sizeof(riffSize_le), 1, self->theFile);
/* seek to datasize */
fseek(self->theFile, self->dataChunkOffset + 4, SEEK_SET);
fwrite(&dataSize_le, sizeof(dataSize_le), 1, self->theFile);
#else
fclose(self->theFile);
fopen();
/* tbd ... */
/* overwrite the first n bytes w/ wav hdr*/
fwrite(self->waveHeader, sizeof(__tinyWaveHeader), 1, self->theFile);
#endif
fclose(self->theFile);
free(self);
return __TWO_SUCCESS;
}
#ifdef SUPPORT_BWF
static int CloseBWF(WAVEFILEOUT *self, LOUDNESSINFO bextData)
{
int wordData;
if (!self)
return __TWO_ERROR;
if (self->bextChunkOffset)
{
/* Offset for Loudness Data in bext-chunk: 8: Chunck-Header, 412:prev.Data */
fseek(self->theFile, self->bextChunkOffset + 8 + 412, SEEK_SET);
wordData = LittleEndian32(EncodeLoudness(bextData.loudnessVal));
fwrite(&wordData, 2, 1, self->theFile);
wordData = LittleEndian32(EncodeLoudness(bextData.loudnessRange));
fwrite(&wordData, 2, 1, self->theFile);
wordData = LittleEndian32(EncodeLoudness(bextData.maxTruePeakLevel));
fwrite(&wordData, 2, 1, self->theFile);
wordData = LittleEndian32(EncodeLoudness(bextData.maxMomentaryLoudnes));
fwrite(&wordData, 2, 1, self->theFile);
wordData = LittleEndian32(EncodeLoudness(bextData.maxShortTermLoudness));
fwrite(&wordData, 2, 1, self->theFile);
}
return CloseWav(self);
}
#endif
/*------------- local subs ----------------*/
static __inline unsigned int BigEndian32(char a, char b, char c, char d)
{
#ifdef __TWO_LE
return (unsigned int)d << 24 | (unsigned int)c << 16 | (unsigned int)b << 8 | (unsigned int)a;
#else
return (unsigned int)a << 24 | (unsigned int)b << 16 | (unsigned int)c << 8 | (unsigned int)d;
#endif
}
static __inline unsigned int LittleEndian32(unsigned int v)
{
#ifdef __TWO_LE
return v;
#else
return (v & 0x000000FF) << 24 | (v & 0x0000FF00) << 8 | (v & 0x00FF0000) >> 8 | (v & 0xFF000000) >> 24;
#endif
}
/* signed version of the above */
static __inline unsigned int LittleEndian32s(int v)
{
#ifdef __TWO_LE
return v;
#else
return (v & 0x000000FF) << 24 | (v & 0x0000FF00) << 8 | (v & 0x00FF0000) >> 8 | (v & 0xFF000000) >> 24;
#endif
}
static __inline short LittleEndian16(short v)
{
#ifdef __TWO_LE
return v;
#else
return ((v << 8) & 0xFF00) | ((v >> 8) & 0x00FF);
#endif
}
#ifdef SUPPORT_BWF
static unsigned int EncodeLoudness(float x)
{
int s = (x > 0) - (x < 0);
return (int)(x * 100.0f + s * 0.5f);
}
#endif
static __inline int __dataSizeChk(WAVEFILEOUT *self, int newbytes)
{
if (!self)
return __TWO_ERROR;
if ((((TWO_INT64)self->dataSize) + ((TWO_INT64)newbytes)) > self->dataSizeLimit)
{
return __TWO_ERROR;
}
return __TWO_SUCCESS;
}
#endif /* __TINYWAVEOUT_C_H__ */