-
Notifications
You must be signed in to change notification settings - Fork 5
/
audio.c
1550 lines (1298 loc) · 38 KB
/
audio.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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* WaveGain - Filename: AUDIO.C
*
* Function: Essentially provides all the wave input and output routines.
*
* Copyright (c) 2002 - 2005 John Edwards <john.edwards33@ntlworld.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Portions, (c) Michael Smith <msmith@labyrinth.net.au>
* Portions from Vorbize, (c) Kenneth Arnold <kcarnold@yahoo.com>
* and libvorbis examples, (c) Monty <monty@xiph.org>
*
* AIFF/AIFC support from OggSquish, (c) 1994-1996 Monty <xiphmont@xiph.org>
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <math.h>
#ifdef _WIN32
#include <io.h>
#else
# ifndef __APPLE__
# include <sys/io.h>
# endif
#endif
#include <fcntl.h>
#ifndef __APPLE__
#include <malloc.h>
#endif
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "audio.h"
#include "i18n.h"
#include "misc.h"
/* Wrappers for mkstemp / _mktemp_s to a common API
* Always return an open file stream or NULL on error
*/
#ifdef _WIN32
/* In Windows, _mktemp_s() simply returns a filename from template,
* so fopen is used. Note this is not race-safe!
* _mktemp_s() requires <io.h>
*/
FILE* fmkstemp(char *template) {
if (_mktemp_s(template, strlen(template)) == 0)
return fopen(template, "wb");
else
return NULL;
}
#else
/* In POSIX, mkstemp() already opens a file, but not as a stream,
* so fdopen is used. This is race-safe.
* mkstemp() requires <stdlib.h>
* fdopen() requires <stdio.h>
*/
#include <unistd.h>
FILE* fmkstemp(char *template) {
int fd = mkstemp(template);
if (fd != -1)
return fdopen(fd, "wb");
else {
remove(template);
close(fd);
return NULL;
}
}
#endif
/* Macros to read header data */
#define READ_U32_LE(buf) \
(((buf)[3]<<24)|((buf)[2]<<16)|((buf)[1]<<8)|((buf)[0]&0xff))
#define READ_U16_LE(buf) \
(((buf)[1]<<8)|((buf)[0]&0xff))
#define READ_U32_BE(buf) \
(((buf)[0]<<24)|((buf)[1]<<16)|((buf)[2]<<8)|((buf)[3]&0xff))
#define READ_U16_BE(buf) \
(((buf)[0]<<8)|((buf)[1]&0xff))
#ifdef __APPLE__
#define READ_D64 read_d64_be
#define WRITE_D64 write_d64_be
#else
#define READ_D64 read_d64_le
#define WRITE_D64 write_d64_le
#endif
static unsigned char pcm_guid[16] =
{
/* (00000001-0000-0010-8000-00aa00389b71) */
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71
};
static unsigned char ieee_float_guid[16] =
{
/* (00000003-0000-0010-8000-00aa00389b71) */
0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71
};
/* Define the supported formats here */
input_format formats[] = {
{wav_id, 12, wav_open, wav_close, "wav", N_("WAV file reader")},
{aiff_id, 12, aiff_open, wav_close, "aiff", N_("AIFF/AIFC file reader")},
{NULL, 0, NULL, NULL, NULL, NULL}
};
#if (defined (WIN32) || defined (_WIN32))
extern int __cdecl _fseeki64(FILE *, Int64_t, int);
extern Int64_t __cdecl _ftelli64(FILE *);
#define FSEEK64 _fseeki64
#define FTELL64 _ftelli64
#else
#define FSEEK64 fseeko
#define FTELL64 ftello
#endif
/* Global */
Int64_t current_pos_t;
#if (defined (WIN32) || defined (_WIN32))
__inline long int lrint(double flt)
{
int intgr;
_asm {
fld flt
fistp intgr
}
return intgr;
}
/* We're not touching this as we don't want these assembler routines on GHz Intel Core i7 */
#elif (defined (__MACOSX__))
#define lrint double2int
inline static long
double2int (register double in)
{ int res [2] ;
__asm__ __volatile__
( "fctiw %1, %1\n\t"
"stfd %1, %0"
: "=m" (res) /* Output */
: "f" (in) /* Input */
: "memory"
) ;
return res [1] ;
}
#else
#define lrint double2int
static inline long double2int (double in)
{ long retval ;
__asm__ __volatile__
( "fistpl %0"
: "=m" (retval)
: "t" (in)
: "st"
) ;
return retval ;
}
#endif
double read_d64_be(unsigned char *cptr)
{
int exponent, negative;
double dvalue;
negative = (cptr [0] & 0x80) ? 1 : 0;
exponent = ((cptr [0] & 0x7F) << 4) | ((cptr [1] >> 4) & 0xF);
/* Might not have a 64 bit long, so load the mantissa into a double. */
dvalue = (((cptr [1] & 0xF) << 24) | (cptr [2] << 16) | (cptr [3] << 8) | cptr [4]);
dvalue += ((cptr [5] << 16) | (cptr [6] << 8) | cptr [7]) / ((double) 0x1000000);
if (exponent == 0 && dvalue == 0.0)
return 0.0;
dvalue += 0x10000000;
exponent = exponent - 0x3FF;
dvalue = dvalue / ((double) 0x10000000);
if (negative)
dvalue *= -1;
if (exponent > 0)
dvalue *= (1 << exponent);
else if (exponent < 0)
dvalue /= (1 << abs (exponent));
return dvalue;
}
double read_d64_le(unsigned char *cptr)
{
int exponent, negative;
double dvalue;
negative = (cptr [7] & 0x80) ? 1 : 0;
exponent = ((cptr [7] & 0x7F) << 4) | ((cptr [6] >> 4) & 0xF);
/* Might not have a 64 bit long, so load the mantissa into a double. */
dvalue = (((cptr [6] & 0xF) << 24) | (cptr [5] << 16) | (cptr [4] << 8) | cptr [3]);
dvalue += ((cptr [2] << 16) | (cptr [1] << 8) | cptr [0]) / ((double) 0x1000000);
if (exponent == 0 && dvalue == 0.0)
return 0.0;
dvalue += 0x10000000;
exponent = exponent - 0x3FF;
dvalue = dvalue / ((double) 0x10000000);
if (negative)
dvalue *= -1;
if (exponent > 0)
dvalue *= (1 << exponent);
else if (exponent < 0)
dvalue /= (1 << abs (exponent));
return dvalue;
}
void write_d64_be(unsigned char *out, double in)
{
int exponent, mantissa;
memset (out, 0, sizeof (double));
if (in == 0.0)
return;
if (in < 0.0) {
in *= -1.0;
out [0] |= 0x80;
}
in = frexp (in, &exponent);
exponent += 1022;
out [0] |= (exponent >> 4) & 0x7F;
out [1] |= (exponent << 4) & 0xF0;
in *= 0x20000000;
mantissa = lrint (floor (in));
out [1] |= (mantissa >> 24) & 0xF;
out [2] = (mantissa >> 16) & 0xFF;
out [3] = (mantissa >> 8) & 0xFF;
out [4] = mantissa & 0xFF;
in = fmod (in, 1.0);
in *= 0x1000000;
mantissa = lrint (floor (in));
out [5] = (mantissa >> 16) & 0xFF;
out [6] = (mantissa >> 8) & 0xFF;
out [7] = mantissa & 0xFF;
return;
}
void write_d64_le(unsigned char *out, double in)
{
int exponent, mantissa;
memset (out, 0, sizeof (double));
if (in == 0.0)
return;
if (in < 0.0) {
in *= -1.0;
out [7] |= 0x80;
}
in = frexp (in, &exponent);
exponent += 1022;
out [7] |= (exponent >> 4) & 0x7F;
out [6] |= (exponent << 4) & 0xF0;
in *= 0x20000000;
mantissa = lrint (floor (in));
out [6] |= (mantissa >> 24) & 0xF;
out [5] = (mantissa >> 16) & 0xFF;
out [4] = (mantissa >> 8) & 0xFF;
out [3] = mantissa & 0xFF;
in = fmod (in, 1.0);
in *= 0x1000000;
mantissa = lrint (floor (in));
out [2] = (mantissa >> 16) & 0xFF;
out [1] = (mantissa >> 8) & 0xFF;
out [0] = mantissa & 0xFF;
return;
}
input_format *open_audio_file(FILE *in, wavegain_opt *opt)
{
int j = 0;
unsigned char *buf = NULL;
int buf_size=0, buf_filled = 0;
int size, ret;
while (formats[j].id_func) {
size = formats[j].id_data_len;
if (size >= buf_size) {
buf = realloc(buf, size);
buf_size = size;
}
if (size > buf_filled) {
ret = fread(buf+buf_filled, 1, buf_size-buf_filled, in);
buf_filled += ret;
if (buf_filled < size) {
/* File truncated */
j++;
continue;
}
}
if (formats[j].id_func(buf, buf_filled)) {
/* ok, we now have something that can handle the file */
if (formats[j].open_func(in, opt, buf, buf_filled)) {
free(buf);
return &formats[j];
}
}
j++;
}
free(buf);
return NULL;
}
static int seek_forward(FILE *in, Int64_t length)
{
if (FSEEK64(in, length, SEEK_CUR)) {
/* Failed. Do it the hard way. */
unsigned char buf[1024];
int seek_needed = length, seeked;
while (seek_needed > 0) {
seeked = fread(buf, 1, seek_needed > 1024 ? 1024:seek_needed, in);
if (!seeked)
return 0; /* Couldn't read more, can't read file */
else
seek_needed -= seeked;
}
}
return 1;
}
static int find_wav_chunk(FILE *in, char *type, Int64_t *len)
{
unsigned char buf[8];
while (1) {
if (fread(buf,1,8,in) < 8) {
/* Suck down a chunk specifier */
if (memcmp(type, "gain", 4))
fprintf(stderr, "Warning: Unexpected EOF in reading WAV header (1)\n");
return 0; /* EOF before reaching the appropriate chunk */
}
if (memcmp(buf, type, 4)) {
*len = READ_U32_LE(buf+4);
if (!seek_forward(in, *len))
return 0;
buf[4] = 0;
}
else {
*len = READ_U32_LE(buf+4);
return 1;
}
}
return 0; /* unreachable */
}
static int find_gain_chunk(FILE *in, Int64_t *len)
{
unsigned char buf[8];
if (fread(buf,1,8,in) < 8) {
/* Suck down a chunk specifier */
fprintf(stderr, "Warning: Unexpected EOF in reading WAV header (3)\n");
return 0; /* EOF before reaching the appropriate chunk */
}
if (!memcmp(buf, "gain", 4)) {
*len = READ_U32_LE(buf+4);
return 1;
}
else {
return 0;
}
}
static int find_aiff_chunk(FILE *in, char *type, unsigned int *len)
{
unsigned char buf[8];
while (1) {
if (fread(buf,1,8,in) <8) {
fprintf(stderr, "Warning: Unexpected EOF in AIFF chunk\n");
return 0;
}
*len = READ_U32_BE(buf+4);
if (memcmp(buf,type,4)) {
if ((*len) & 0x1)
(*len)++;
if (!seek_forward(in, *len))
return 0;
}
else
return 1;
}
return 0; /* unreachable */
}
double read_IEEE80(unsigned char *buf)
{
int s = buf[0] & 0xff;
int e = ((buf[0] & 0x7f) <<8) | (buf[1] & 0xff);
double f = ((unsigned long)(buf[2] & 0xff) << 24)|
((buf[3] & 0xff) << 16)|
((buf[4] & 0xff) << 8) |
(buf[5] & 0xff);
if (e == 32767) {
if (buf[2] & 0x80)
return HUGE_VAL; /* Really NaN, but this won't happen in reality */
else {
if (s)
return -HUGE_VAL;
else
return HUGE_VAL;
}
}
f = ldexp(f, 32);
f += ((buf[6] & 0xff) << 24)|
((buf[7] & 0xff) << 16)|
((buf[8] & 0xff) << 8) |
(buf[9] & 0xff);
return ldexp(f, e-16446);
}
/* AIFF/AIFC support adapted from the old OggSQUISH application */
int aiff_id(unsigned char *buf, int len)
{
if (len < 12) return 0; /* Truncated file, probably */
if (memcmp(buf, "FORM", 4))
return 0;
if (memcmp(buf + 8, "AIF",3))
return 0;
if (buf[11] != 'C' && buf[11] != 'F')
return 0;
return 1;
}
int aiff_open(FILE *in, wavegain_opt *opt, unsigned char *buf,
int buflen __attribute__((unused)))
{
int aifc; /* AIFC or AIFF? */
unsigned int len;
unsigned char *buffer;
unsigned char buf2[8];
aiff_fmt format;
aifffile *aiff = malloc(sizeof(aifffile));
if (buf[11] == 'C')
aifc = 1;
else {
aifc = 0;
opt->format = WAV_FMT_AIFF;
}
if (!find_aiff_chunk(in, "COMM", &len)) {
fprintf(stderr, "Warning: No common chunk found in AIFF file\n");
return 0; /* EOF before COMM chunk */
}
if (len < 18) {
fprintf(stderr, "Warning: Truncated common chunk in AIFF header\n");
return 0; /* Weird common chunk */
}
buffer = alloca(len);
if (fread(buffer, 1, len, in) < len) {
fprintf(stderr, "Warning: Unexpected EOF in reading AIFF header\n");
return 0;
}
format.channels = READ_U16_BE(buffer);
format.totalframes = READ_U32_BE(buffer + 2);
format.samplesize = READ_U16_BE(buffer + 6);
format.rate = (int)read_IEEE80(buffer + 8);
aiff->bigendian = BIG;
opt->endianness = BIG;
if (aifc) {
if (len < 22) {
fprintf(stderr, "Warning: AIFF-C header truncated.\n");
return 0;
}
if (!memcmp(buffer + 18, "NONE", 4)) {
aiff->bigendian = BIG;
opt->endianness = BIG;
}
else if (!memcmp(buffer + 18, "sowt", 4)) {
aiff->bigendian = LITTLE;
opt->endianness = LITTLE;
}
else {
fprintf(stderr, "Warning: Can't handle compressed AIFF-C (%c%c%c%c)\n", *(buffer+18), *(buffer+19), *(buffer+20), *(buffer+21));
return 0; /* Compressed. Can't handle */
}
}
if (!find_aiff_chunk(in, "SSND", &len)) {
fprintf(stderr, "Warning: No SSND chunk found in AIFF file\n");
return 0; /* No SSND chunk -> no actual audio */
}
if (len < 8) {
fprintf(stderr, "Warning: Corrupted SSND chunk in AIFF header\n");
return 0;
}
if (fread(buf2, 1, 8, in) < 8) {
fprintf(stderr, "Warning: Unexpected EOF reading AIFF header\n");
return 0;
}
format.offset = READ_U32_BE(buf2);
format.blocksize = READ_U32_BE(buf2+4);
if ( format.blocksize == 0 && (format.samplesize == 16 || format.samplesize == 8)) {
/* From here on, this is very similar to the wav code. Oh well. */
opt->rate = format.rate;
opt->channels = format.channels;
opt->read_samples = wav_read; /* Similar enough, so we use the same */
opt->total_samples_per_channel = format.totalframes;
opt->samplesize = format.samplesize;
if (aifc && format.samplesize == 8)
opt->format = WAV_FMT_AIFC8;
else if (aifc && format.samplesize == 16)
opt->format = WAV_FMT_AIFC16;
opt->header_size = 0;
opt->header = NULL;
opt->rate = format.rate;
aiff->f = in;
aiff->samplesread = 0;
aiff->channels = format.channels;
aiff->samplesize = format.samplesize;
aiff->totalsamples = format.totalframes;
opt->readdata = (void *)aiff;
seek_forward(in, format.offset); /* Swallow some data */
return 1;
}
else {
fprintf(stderr, "Warning: WaveGain does not support this type of AIFF/AIFC file\n"
" Must be 8 or 16 bit PCM.\n");
return 0;
}
}
int wav_id(unsigned char *buf, int len)
{
/*unsigned int flen = READ_U32_LE(buf + 4);*/ /* We don't use this */;
if (len < 12) return 0; /* Something screwed up */
if (memcmp(buf, "RIFF", 4))
return 0; /* Not wave */
if (memcmp(buf + 8, "WAVE",4))
return 0; /* RIFF, but not wave */
return 1;
}
int wav_open(FILE *in, wavegain_opt *opt,
unsigned char *oldbuf __attribute__((unused)),
int buflen __attribute__((unused)))
{
unsigned char buf[81];
Int64_t len;
Int64_t current_pos;
int samplesize;
wav_fmt format;
wavfile *wav = malloc(sizeof(wavfile));
/* Ok. At this point, we know we have a WAV file. Now we have to detect
* whether we support the subtype, and we have to find the actual data
* We don't (for the wav reader) need to use the buffer we used to id this
* as a wav file (oldbuf)
*/
if (!find_wav_chunk(in, "fmt ", &len)) {
fprintf(stderr, "Warning: Failed to find fmt chunk in reading WAV header\n");
return 0; /* EOF */
}
if (len < 16) {
fprintf(stderr, "Warning: Unrecognised format chunk in WAV header\n");
return 0; /* Weird format chunk */
}
/* A common error is to have a format chunk that is not 16 or 18 bytes
* in size. This is incorrect, but not fatal, so we only warn about
* it instead of refusing to work with the file. Please, if you
* have a program that's creating format chunks of sizes other than
* 16, 18 or 40 bytes in size, report a bug to the author.
* (40 bytes accommodates WAVEFORMATEXTENSIBLE conforming files.)
*/
if (len != 16 && len != 18 && len != 40)
fprintf(stderr, "Warning: INVALID format chunk in WAV header.\n"
" Trying to read anyway (may not work)...\n");
/* Prevent buffer overflow in invalid / malicious files
*/
if (len > sizeof(buf)) {
fprintf(stderr, "Warning: format chunk size (%lld) in WAV header"
" is larger than permitted (%d).\n",
len, sizeof(buf));
len = sizeof(buf);
}
/* Deal with stupid broken apps. Don't use these programs.
*/
if (fread(buf,1,len,in) < len) {
fprintf(stderr, "Warning: Unexpected EOF in reading WAV header\n");
return 0;
}
format.format = READ_U16_LE(buf);
format.channels = READ_U16_LE(buf+2);
format.samplerate = READ_U32_LE(buf+4);
format.bytespersec = READ_U32_LE(buf+8);
format.align = READ_U16_LE(buf+12);
format.samplesize = READ_U16_LE(buf+14);
if (!opt->std_in) {
current_pos = FTELL64(in);
if (!find_gain_chunk(in, &len))
FSEEK64(in, current_pos, SEEK_SET);
else {
unsigned char buf_double[8];
opt->gain_chunk = 1;
if (fread(buf_double, 1, 8, in) < 8)
fprintf(stderr, "Warning: Failed to read WAV gain chunk\n");
opt->gain_scale = READ_D64(buf_double);
}
}
if (!find_wav_chunk(in, "data", &len)) {
fprintf(stderr, "Warning: Failed to find data chunk in reading WAV header\n");
return 0; /* EOF */
}
if (opt->apply_gain) {
current_pos = FTELL64(in);
current_pos_t = current_pos + len;
FSEEK64(in, 0, SEEK_SET);
if ((opt->header = malloc(sizeof(char) * current_pos)) == NULL)
fprintf(stderr, "Error: unable to allocate memory for header\n");
else {
opt->header_size = current_pos;
if (fread(opt->header, 1, opt->header_size, in) < (size_t)opt->header_size)
fprintf(stderr, "Warning: Failed to read WAV header when applying gain\n");
}
FSEEK64(in, current_pos, SEEK_SET);
}
if(format.format == WAVE_FORMAT_PCM) {
samplesize = format.samplesize/8;
opt->read_samples = wav_read;
/* works with current enum */
opt->format = samplesize;
}
else if(format.format == WAVE_FORMAT_IEEE_FLOAT) {
samplesize = 4;
opt->read_samples = wav_ieee_read;
opt->endianness = LITTLE;
opt->format = WAV_FMT_FLOAT;
}
else if (format.format == WAVE_FORMAT_EXTENSIBLE) {
format.channel_mask = READ_U32_LE(buf+20);
if (format.channel_mask > 3) {
fprintf(stderr, "ERROR: Wav file is unsupported type (must be standard 1 or 2 channel PCM\n"
" or type 3 floating point PCM)(2)\n");
return 0;
}
if (memcmp(buf+24, pcm_guid, 16) == 0) {
samplesize = format.samplesize/8;
opt->read_samples = wav_read;
/* works with current enum */
opt->format = samplesize;
}
else if (memcmp(buf+24, ieee_float_guid, 16) == 0) {
samplesize = 4;
opt->read_samples = wav_ieee_read;
opt->endianness = LITTLE;
opt->format = WAV_FMT_FLOAT;
}
else {
fprintf(stderr, "ERROR: Wav file is unsupported type (must be standard PCM\n"
" or type 3 floating point PCM)(2)\n");
return 0;
}
}
else {
fprintf(stderr, "ERROR: Wav file is unsupported type (must be standard PCM\n"
" or type 3 floating point PCM\n");
return 0;
}
opt->samplesize = format.samplesize;
if(format.align != format.channels * samplesize) {
/* This is incorrect according to the spec. Warn loudly, then ignore
* this value.
*/
fprintf(stderr, _("Warning: WAV 'block alignment' value is incorrect, ignoring.\n"
"The software that created this file is incorrect.\n"));
}
if ( format.align == format.channels * samplesize &&
format.samplesize == samplesize * 8 &&
(format.samplesize == 32 || format.samplesize == 24 ||
format.samplesize == 16 || format.samplesize == 8)) {
/* OK, good - we have the one supported format,
now we want to find the size of the file */
opt->rate = format.samplerate;
opt->channels = format.channels;
wav->f = in;
wav->samplesread = 0;
wav->bigendian = 0;
opt->endianness = LITTLE;
wav->channels = format.channels; /* This is in several places. The price
of trying to abstract stuff. */
wav->samplesize = format.samplesize;
if (!format.channels)
opt->total_samples_per_channel = 0;
else if (len)
opt->total_samples_per_channel = len/(format.channels*samplesize);
else {
Int64_t pos;
pos = FTELL64(in);
if (FSEEK64(in, 0, SEEK_END) == -1)
opt->total_samples_per_channel = 0; /* Give up */
else {
opt->total_samples_per_channel = (FTELL64(in) - pos)/(format.channels * samplesize);
FSEEK64(in, pos, SEEK_SET);
}
}
wav->totalsamples = opt->total_samples_per_channel;
opt->readdata = (void *)wav;
return 1;
}
else {
fprintf(stderr, "ERROR: Wav file is unsupported subformat (must be 8, 16, 24 or 32 bit PCM\n"
"or floating point PCM)\n");
return 0;
}
}
long wav_read(void *in, double **buffer, int samples, int fast, int chunk)
{
wavfile *f = (wavfile *)in;
int sampbyte = f->samplesize / 8;
signed char *buf = alloca(samples*sampbyte*f->channels);
long bytes_read;
int i, j;
long realsamples;
if (fast) {
chunk /= (sampbyte * f->channels);
chunk *= (sampbyte * f->channels);
FSEEK64(f->f, chunk, SEEK_SET);
}
bytes_read = fread(buf, 1, samples * sampbyte * f->channels, f->f);
if (f->totalsamples && f->samplesread + bytes_read / (sampbyte * f->channels) > f->totalsamples) {
bytes_read = sampbyte * f->channels * (f->totalsamples - f->samplesread);
}
realsamples = bytes_read / (sampbyte * f->channels);
f->samplesread += realsamples;
if (f->samplesize == 8) {
unsigned char *bufu = (unsigned char *)buf;
for (i = 0; i < realsamples; i++) {
for (j = 0; j < f->channels; j++)
buffer[j][i] = ((int)(bufu[i * f->channels + j]) - 128) / 128.0;
}
}
else if (f->samplesize==16) {
#ifdef __APPLE__
if (f->bigendian != machine_endianness) {
#else
if (f->bigendian == machine_endianness) {
#endif
for (i = 0; i < realsamples; i++) {
for (j = 0; j < f->channels; j++)
buffer[j][i] = ((buf[i * 2 * f->channels + 2 * j + 1] <<8) |
(buf[i * 2 * f->channels + 2 * j] & 0xff)) / 32768.0;
}
}
else {
for (i = 0; i < realsamples; i++) {
for (j = 0; j < f->channels; j++)
buffer[j][i]=((buf[i * 2 * f->channels + 2 * j] << 8) |
(buf[i * 2 * f->channels + 2 * j + 1] & 0xff)) / 32768.0;
}
}
}
else if (f->samplesize == 24) {
#ifdef __APPLE__
if (f->bigendian != machine_endianness) {
#else
if (f->bigendian == machine_endianness) {
#endif
for (i = 0; i < realsamples; i++) {
for (j = 0; j < f->channels; j++)
buffer[j][i] = ((buf[i * 3 * f->channels + 3 * j + 2] << 16) |
(((unsigned char *)buf)[i * 3 * f->channels + 3 * j + 1] << 8) |
(((unsigned char *)buf)[i * 3 * f->channels + 3 * j] & 0xff))
/ 8388608.0;
}
}
else {
fprintf(stderr, "Big endian 24 bit PCM data is not currently "
"supported, aborting.\n");
return 0;
}
}
else if (f->samplesize == 32) {
#ifdef __APPLE__
if (f->bigendian != machine_endianness) {
#else
if (f->bigendian == machine_endianness) {
#endif
for (i = 0; i < realsamples; i++) {
for (j = 0; j < f->channels; j++)
buffer[j][i] = ((buf[i * 4 * f->channels + 4 * j + 3] << 24) |
(((unsigned char *)buf)[i * 4 * f->channels + 4 * j + 2] << 16) |
(((unsigned char *)buf)[i * 4 * f->channels + 4 * j + 1] << 8) |
(((unsigned char *)buf)[i * 4 * f->channels + 4 * j] & 0xff))
/ 2147483648.0;
}
}
else {
fprintf(stderr, "Big endian 32 bit PCM data is not currently "
"supported, aborting.\n");
return 0;
}
}
else {
fprintf(stderr, "Internal error: attempt to read unsupported "
"bitdepth %d\n", f->samplesize);
return 0;
}
return realsamples;
}
long wav_ieee_read(void *in, double **buffer, int samples, int fast, int chunk)
{
wavfile *f = (wavfile *)in;
float *buf = alloca(samples * 4 * f->channels); /* de-interleave buffer */
long bytes_read;
int i,j;
long realsamples;
if (fast) {
chunk /= (sizeof(float) * f->channels);
chunk *= (sizeof(float) * f->channels);
FSEEK64(f->f, chunk, SEEK_SET);
}
bytes_read = fread(buf, 1, samples * 4 * f->channels, f->f);
if (f->totalsamples && f->samplesread + bytes_read / (4 * f->channels) > f->totalsamples)
bytes_read = 4 * f->channels * (f->totalsamples - f->samplesread);
realsamples = bytes_read / (4 * f->channels);
f->samplesread += realsamples;
for (i = 0; i < realsamples; i++)
for (j = 0; j < f->channels; j++)
buffer[j][i] = buf[i * f->channels + j];
return realsamples;
}
void wav_close(void *info)
{
wavfile *f = (wavfile *)info;
free(f);
}
int raw_open(FILE *in, wavegain_opt *opt)
{
wav_fmt format; /* fake wave header ;) */
wavfile *wav = malloc(sizeof(wavfile));
/* construct fake wav header ;) */
format.format = 2;
format.channels = opt->channels;
format.samplerate = opt->rate;
format.samplesize = opt->samplesize;
format.bytespersec = opt->channels * opt->rate * opt->samplesize / 8;
format.align = format.bytespersec;
wav->f = in;
wav->samplesread = 0;
wav->bigendian = opt->endianness;
wav->channels = format.channels;
wav->samplesize = opt->samplesize;
wav->totalsamples = 0;
opt->read_samples = wav_read;
opt->readdata = (void *)wav;
opt->total_samples_per_channel = 0; /* raw mode, don't bother */
return 1;
}
/*
* W A V E O U T P U T
*/
audio_file *open_output_audio_file(char *infile, wavegain_opt *opt)
{
audio_file *aufile = malloc(sizeof(audio_file));
aufile->outputFormat = opt->format;