forked from aikiriao/IMA-ADPCM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwav.c
893 lines (746 loc) · 29.6 KB
/
wav.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
#include "wav.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
/* パーサの読み込みバッファサイズ */
#define WAVBITBUFFER_BUFFER_SIZE (10 * 1024)
/* 下位n_bitsを取得 */
/* 補足)((1 << n_bits) - 1)は下位の数値だけ取り出すマスクになる */
#define WAV_GetLowerBits(n_bits, val) ((val) & (uint32_t)((1 << (n_bits)) - 1))
/* 内部エラー型 */
typedef enum WAVErrorTag {
WAV_ERROR_OK = 0, /* OK */
WAV_ERROR_NG, /* 分類不能な失敗 */
WAV_ERROR_IO, /* 入出力エラー */
WAV_ERROR_INVALID_PARAMETER, /* 不正な引数 */
WAV_ERROR_INVALID_FORMAT /* 不正なフォーマット */
} WAVError;
/* ビットバッファ */
struct WAVBitBuffer {
uint8_t bytes[WAVBITBUFFER_BUFFER_SIZE]; /* ビットバッファ */
uint32_t bit_count; /* ビット入力カウント */
int32_t byte_pos; /* バイト列読み込み位置 */
};
/* パーサ */
struct WAVParser {
FILE* fp; /* 読み込みファイルポインタ */
struct WAVBitBuffer buffer; /* ビットバッファ */
};
/* ライタ */
struct WAVWriter {
FILE* fp; /* 書き込みファイルポインタ */
uint32_t bit_buffer; /* 出力途中のビット */
uint32_t bit_count; /* 出力カウント */
struct WAVBitBuffer buffer; /* ビットバッファ */
};
/* パーサの初期化 */
static void WAVParser_Initialize(struct WAVParser* parser, FILE* fp);
/* パーサの使用終了 */
static void WAVParser_Finalize(struct WAVParser* parser);
/* n_bit 取得し、結果を右詰めする */
static WAVError WAVParser_GetBits(struct WAVParser* parser, uint32_t n_bits, uint64_t* bitsbuf);
/* シーク(fseek準拠) */
static WAVError WAVParser_Seek(struct WAVParser* parser, int32_t offset, int32_t wherefrom);
/* ライタの初期化 */
static void WAVWriter_Initialize(struct WAVWriter* writer, FILE* fp);
/* ライタの終了 */
static void WAVWriter_Finalize(struct WAVWriter* writer);
/* valの下位n_bitを書き込む */
static WAVError WAVWriter_PutBits(struct WAVWriter* writer, uint64_t val, uint32_t n_bits);
/* バッファにたまったビットをクリア */
static WAVError WAVWriter_Flush(struct WAVWriter* writer);
/* リトルエンディアンでビットパターンを出力 */
static WAVError WAVWriter_PutLittleEndianBytes(
struct WAVWriter* writer, uint32_t nbytes, uint64_t data);
/* ライタを使用してファイルフォーマットに従ったヘッダ部を出力 */
static WAVError WAVWriter_PutWAVHeader(
struct WAVWriter* writer, const struct WAVFileFormat* format);
/* ライタを使用してPCMデータ出力 */
static WAVError WAVWriter_PutWAVPcmData(
struct WAVWriter* writer, const struct WAVFile* wavfile);
/* リトルエンディアンでビットパターンを取得 */
static WAVError WAVParser_GetLittleEndianBytes(
struct WAVParser* parser, uint32_t nbytes, uint64_t* bitsbuf);
/* パーサを使用して文字列取得 */
static WAVError WAVParser_GetString(
struct WAVParser* parser, char* string_buffer, uint32_t string_length);
/* パーサを使用して文字列取得/一致チェック */
static WAVError WAVParser_CheckSignatureString(
struct WAVParser* parser, const char* signature, uint32_t signature_length);
/* パーサを使用してファイルフォーマットを読み取り */
static WAVError WAVParser_GetWAVFormat(
struct WAVParser* parser, struct WAVFileFormat* format);
/* パーサを使用してPCMデータを読み取り */
static WAVError WAVParser_GetWAVPcmData(
struct WAVParser* parser, struct WAVFile* wavfile);
/* 8bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert8bitPCMto32bitPCM(int32_t in_8bitpcm);
/* 16bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert16bitPCMto32bitPCM(int32_t in_16bitpcm);
/* 24bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert24bitPCMto32bitPCM(int32_t in_24bitpcm);
/* 32bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert32bitPCMto32bitPCM(int32_t in_32bitpcm);
/* 32bitPCM形式を8bit形式に変換(注意:返り値は32bit整数だが、8bit範囲でクリップされている) */
static int32_t WAV_Convert32bitPCMto8bitPCM(int32_t in_32bitpcm);
/* 32bitPCM形式を16bit形式に変換(注意:返り値は32bit整数だが、16bit範囲でクリップされている) */
static int32_t WAV_Convert32bitPCMto8bitPCM(int32_t in_32bitpcm);
/* 32bitPCM形式を24bit形式に変換(注意:返り値は32bit整数だが、24bit範囲でクリップされている) */
static int32_t WAV_Convert32bitPCMto16bitPCM(int32_t in_32bitpcm);
/* 32bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert32bitPCMto32bitPCM(int32_t in_32bitpcm);
/* パーサを使用してファイルフォーマットを読み取り */
static WAVError WAVParser_GetWAVFormat(
struct WAVParser* parser, struct WAVFileFormat* format)
{
uint64_t bitsbuf;
int32_t fmt_chunk_size;
struct WAVFileFormat tmp_format;
/* 引数チェック */
if (parser == NULL || format == NULL) {
return WAV_ERROR_INVALID_PARAMETER;
}
/* ヘッダ 'R', 'I', 'F', 'F' をチェック */
if (WAVParser_CheckSignatureString(parser, "RIFF", 4) != WAV_ERROR_OK) {
return WAV_ERROR_INVALID_FORMAT;
}
/* ファイルサイズ-8(読み飛ばし) */
if (WAVParser_GetLittleEndianBytes(parser, 4, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
/* ヘッダ 'W', 'A', 'V', 'E' をチェック */
if (WAVParser_CheckSignatureString(parser, "WAVE", 4) != WAV_ERROR_OK) {
return WAV_ERROR_INVALID_FORMAT;
}
/* fmtチャンクのヘッダ 'f', 'm', 't', ' ' をチェック */
if (WAVParser_CheckSignatureString(parser, "fmt ", 4) != WAV_ERROR_OK) {
return WAV_ERROR_INVALID_FORMAT;
}
/* fmtチャンクのバイト数を取得
* 補足/注意)16より大きいサイズのfmtチャンクの内容(拡張)は読み飛ばす */
if (WAVParser_GetLittleEndianBytes(parser, 4, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
fmt_chunk_size = (int32_t)bitsbuf;
/* フォーマットIDをチェック
* 補足)1(リニアPCM)以外対応していない */
if (WAVParser_GetLittleEndianBytes(parser, 2, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
if (bitsbuf != 1) {
/* fprintf(stderr, "Unsupported format: fmt chunk format ID \n"); */
return WAV_ERROR_INVALID_FORMAT;
}
tmp_format.data_format = WAV_DATA_FORMAT_PCM;
/* チャンネル数 */
if (WAVParser_GetLittleEndianBytes(parser, 2, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
tmp_format.num_channels = (uint32_t)bitsbuf;
/* サンプリングレート */
if (WAVParser_GetLittleEndianBytes(parser, 4, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
tmp_format.sampling_rate =(uint32_t) bitsbuf;
/* データ速度(byte/sec)は読み飛ばし */
if (WAVParser_GetLittleEndianBytes(parser, 4, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
/* ブロックあたりサイズ数は読み飛ばし */
if (WAVParser_GetLittleEndianBytes(parser, 2, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
/* 量子化ビット数(サンプルあたりのビット数) */
if (WAVParser_GetLittleEndianBytes(parser, 2, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
tmp_format.bits_per_sample = (uint32_t)bitsbuf;
/* 拡張部分の読み取りには未対応: 読み飛ばしを行う */
if (fmt_chunk_size > 16) {
fprintf(stderr, "Warning: skip fmt chunk extention (unsupported). \n");
if (WAVParser_Seek(parser, fmt_chunk_size - 16, SEEK_CUR) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
}
/* チャンク読み取り */
while (1) {
char string_buf[4];
/* チャンク文字列取得 */
if (WAVParser_GetString(parser, string_buf, 4) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
if (strncmp(string_buf, "data", 4) == 0) {
/* データチャンクを見つけたら終わり */
break;
} else {
/* 他のチャンクはサイズだけ取得してシークにより読み飛ばす */
if (WAVParser_GetLittleEndianBytes(parser, 4, &bitsbuf) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
/* printf("chunk:%s size:%d \n", string_buf, (int32_t)bitsbuf); */
WAVParser_Seek(parser, (int32_t)bitsbuf, SEEK_CUR);
}
}
/* サンプル数: 波形データバイト数から算出 */
if (WAVParser_GetLittleEndianBytes(parser, 4, &bitsbuf) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
tmp_format.num_samples = (uint32_t)bitsbuf;
assert(tmp_format.num_samples % ((tmp_format.bits_per_sample / 8) * tmp_format.num_channels) == 0);
tmp_format.num_samples /= ((tmp_format.bits_per_sample / 8) * tmp_format.num_channels);
/* 構造体コピー */
*format = tmp_format;
return WAV_ERROR_OK;
}
/* パーサを使用してPCMデータを読み取り */
static WAVError WAVParser_GetWAVPcmData(
struct WAVParser* parser, struct WAVFile* wavfile)
{
uint32_t ch, sample, bytes_per_sample;
uint64_t bitsbuf;
int32_t (*convert_to_sint32_func)(int32_t);
/* 引数チェック */
if (parser == NULL || wavfile == NULL) {
return WAV_ERROR_INVALID_PARAMETER;
}
/* ビット深度に合わせてPCMデータの変換関数を決定 */
switch (wavfile->format.bits_per_sample) {
case 8:
convert_to_sint32_func = WAV_Convert8bitPCMto32bitPCM;
break;
case 16:
convert_to_sint32_func = WAV_Convert16bitPCMto32bitPCM;
break;
case 24:
convert_to_sint32_func = WAV_Convert24bitPCMto32bitPCM;
break;
case 32:
convert_to_sint32_func = WAV_Convert32bitPCMto32bitPCM;
break;
default:
/* fprintf(stderr, "Unsupported bits per sample format(=%d). \n", wavfile->format.bits_per_sample); */
return WAV_ERROR_INVALID_FORMAT;
}
/* データ読み取り */
bytes_per_sample = wavfile->format.bits_per_sample / 8;
for (sample = 0; sample < wavfile->format.num_samples; sample++) {
for (ch = 0; ch < wavfile->format.num_channels; ch++) {
if (WAVParser_GetLittleEndianBytes(parser, bytes_per_sample, &bitsbuf) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
/* 32bit整数形式に変形してデータにセット */
wavfile->data[ch][sample] = convert_to_sint32_func((int32_t)(bitsbuf));
}
}
return WAV_ERROR_OK;
}
/* ファイルからWAVファイルフォーマットだけ読み取り */
WAVApiResult WAV_GetWAVFormatFromFile(
const char* filename, struct WAVFileFormat* format)
{
struct WAVParser parser;
FILE* fp;
/* 引数チェック */
if (filename == NULL || format == NULL) {
return WAV_APIRESULT_NG;
}
/* wavファイルを開く */
fp = fopen(filename, "rb");
if (fp == NULL) {
/* fprintf(stderr, "Failed to open %s. \n", filename); */
return WAV_APIRESULT_NG;
}
/* パーサ初期化 */
WAVParser_Initialize(&parser, fp);
/* ヘッダ読み取り */
if (WAVParser_GetWAVFormat(&parser, format) != WAV_ERROR_OK) {
return WAV_APIRESULT_NG;
}
/* パーサ使用終了 */
WAVParser_Finalize(&parser);
/* ファイルを閉じる */
fclose(fp);
return WAV_APIRESULT_OK;
}
/* ファイルからWAVファイルハンドルを作成 */
struct WAVFile* WAV_CreateFromFile(const char* filename)
{
struct WAVParser parser;
FILE* fp;
struct WAVFile* wavfile;
struct WAVFileFormat format;
/* 引数チェック */
if (filename == NULL) {
return NULL;
}
/* wavファイルを開く */
fp = fopen(filename, "rb");
if (fp == NULL) {
/* fprintf(stderr, "Failed to open %s. \n", filename); */
return NULL;
}
/* パーサ初期化 */
WAVParser_Initialize(&parser, fp);
/* ヘッダ読み取り */
if (WAVParser_GetWAVFormat(&parser, &format) != WAV_ERROR_OK) {
return NULL;
}
/* ハンドル作成 */
wavfile = WAV_Create(&format);
if (wavfile == NULL) {
return NULL;
}
/* PCMデータ読み取り */
if (WAVParser_GetWAVPcmData(&parser, wavfile) != WAV_ERROR_OK) {
goto EXIT_FAILURE_WITH_DATA_RELEASE;
}
/* パーサ終了 */
WAVParser_Finalize(&parser);
/* ファイルを閉じる */
fclose(fp);
/* 正常終了 */
return wavfile;
/* ハンドルが確保したデータを全て解放して終了 */
EXIT_FAILURE_WITH_DATA_RELEASE:
WAV_Destroy(wavfile);
WAVParser_Finalize(&parser);
fclose(fp);
return NULL;
}
/* フォーマットを指定して新規にWAVファイルハンドルを作成 */
struct WAVFile* WAV_Create(const struct WAVFileFormat* format)
{
uint32_t ch;
struct WAVFile* wavfile;
/* 引数チェック */
if (format == NULL) {
return NULL;
}
/* 現在はPCMフォーマット以外対応していない */
if (format->data_format != WAV_DATA_FORMAT_PCM) {
/* fprintf(stderr, "Unsupported wav data format. \n"); */
return NULL;
}
/* ハンドル作成 */
wavfile = (struct WAVFile *)malloc(sizeof(struct WAVFile));
if (wavfile == NULL) {
goto EXIT_FAILURE_WITH_DATA_RELEASE;
}
/* 構造体コピーによりフォーマット情報取得 */
wavfile->format = (*format);
/* データ領域の割り当て */
wavfile->data = (WAVPcmData **)malloc(sizeof(WAVPcmData *) * format->num_channels);
if (wavfile->data == NULL) {
goto EXIT_FAILURE_WITH_DATA_RELEASE;
}
for (ch = 0; ch < format->num_channels; ch++) {
wavfile->data[ch] = (WAVPcmData *)calloc(format->num_samples, sizeof(WAVPcmData));
if (wavfile->data[ch] == NULL) {
goto EXIT_FAILURE_WITH_DATA_RELEASE;
}
}
return wavfile;
EXIT_FAILURE_WITH_DATA_RELEASE:
WAV_Destroy(wavfile);
return NULL;
}
/* 8bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert8bitPCMto32bitPCM(int32_t in_8bitpcm)
{
/* 無音に相当する128を引いてから32bit整数に切り上げる */
return (in_8bitpcm - 128) << 24;
}
/* 16bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert16bitPCMto32bitPCM(int32_t in_16bitpcm)
{
/* そのまま16bit左シフト */
return in_16bitpcm << 16;
}
/* 24bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert24bitPCMto32bitPCM(int32_t in_24bitpcm)
{
/* そのまま8bit左シフト */
return in_24bitpcm << 8;
}
/* 32bitPCM形式を32bit形式に変換 */
static int32_t WAV_Convert32bitPCMto32bitPCM(int32_t in_32bitpcm)
{
/* 何もしない */
return in_32bitpcm;
}
/* 32bitPCM形式を8bit形式に変換(注意:返り値は32bit整数だが、8bit範囲でクリップされている) */
static int32_t WAV_Convert32bitPCMto8bitPCM(int32_t in_32bitpcm)
{
/* 128のオフセットを加える */
return ((in_32bitpcm >> 24) + 128);
}
/* 32bitPCM形式を16bit形式に変換(注意:返り値は32bit整数だが、16bit範囲でクリップされている) */
static int32_t WAV_Convert32bitPCMto16bitPCM(int32_t in_32bitpcm)
{
return (in_32bitpcm >> 16);
}
/* 32bitPCM形式を24bit形式に変換(注意:返り値は32bit整数だが、24bit範囲でクリップされている) */
static int32_t WAV_Convert32bitPCMto24bitPCM(int32_t in_32bitpcm)
{
return (in_32bitpcm >> 8);
}
/* パーサの初期化 */
static void WAVParser_Initialize(struct WAVParser* parser, FILE* fp)
{
parser->fp = fp;
memset(&parser->buffer, 0, sizeof(struct WAVBitBuffer));
parser->buffer.byte_pos = -1;
}
/* パーサの使用終了 */
static void WAVParser_Finalize(struct WAVParser* parser)
{
parser->fp = NULL;
memset(&parser->buffer, 0, sizeof(struct WAVBitBuffer));
parser->buffer.byte_pos = -1;
}
/* n_bit 取得し、結果を右詰めする */
static WAVError WAVParser_GetBits(struct WAVParser* parser, uint32_t n_bits, uint64_t* bitsbuf)
{
uint64_t tmp;
struct WAVBitBuffer *buf = &(parser->buffer);
/* 引数チェック */
if (parser == NULL || bitsbuf == NULL || n_bits > 64) {
return WAV_ERROR_INVALID_PARAMETER;
}
/* 初回読み込み */
if (buf->byte_pos == -1) {
if (fread(buf->bytes, sizeof(uint8_t), WAVBITBUFFER_BUFFER_SIZE, parser->fp) == 0) {
return WAV_ERROR_IO;
}
buf->byte_pos = 0;
buf->bit_count = 8;
}
/* 最上位ビットからデータを埋めていく
* 初回ループではtmpの上位ビットにセット
* 2回目以降は8bit単位で入力しtmpにセット */
tmp = 0;
while (n_bits > buf->bit_count) {
/* 上位bitから埋めていく */
n_bits -= buf->bit_count;
tmp |= (uint64_t)WAV_GetLowerBits(buf->bit_count, buf->bytes[buf->byte_pos]) << n_bits;
/* 1バイト読み進める */
buf->byte_pos++;
buf->bit_count = 8;
/* バッファが一杯ならば、再度読み込み */
if (buf->byte_pos == WAVBITBUFFER_BUFFER_SIZE) {
if (fread(buf->bytes, sizeof(uint8_t), WAVBITBUFFER_BUFFER_SIZE, parser->fp) == 0) {
return WAV_ERROR_IO;
}
buf->byte_pos = 0;
}
}
/* 端数ビットの処理
* 残ったビット分をtmpの最上位ビットにセット */
buf->bit_count -= n_bits;
tmp |= (uint64_t)WAV_GetLowerBits(n_bits, (uint32_t)(buf->bytes[buf->byte_pos] >> buf->bit_count));
*bitsbuf = tmp;
return WAV_ERROR_OK;
}
/* シーク(fseek準拠) */
static WAVError WAVParser_Seek(struct WAVParser* parser, int32_t offset, int32_t wherefrom)
{
if (parser->buffer.byte_pos != -1) {
/* バッファに取り込んだ分先読みしているので戻す */
offset -= (WAVBITBUFFER_BUFFER_SIZE - (parser->buffer.byte_pos + 1));
}
/* 移動 */
fseek(parser->fp, offset, wherefrom);
/* バッファをクリア */
parser->buffer.byte_pos = -1;
return WAV_ERROR_OK;
}
/* WAVファイルハンドルを破棄 */
void WAV_Destroy(struct WAVFile* wavfile)
{
uint32_t ch;
/* NULLチェックして解放 */
#define NULLCHECK_AND_FREE(ptr) { \
if ((ptr) != NULL) { \
free(ptr); \
ptr = NULL; \
} \
}
if (wavfile != NULL) {
for (ch = 0; ch < wavfile->format.num_channels; ch++) {
NULLCHECK_AND_FREE(wavfile->data[ch]);
}
NULLCHECK_AND_FREE(wavfile->data);
free(wavfile);
}
#undef NULLCHECK_AND_FREE
}
/* ライタを使用してファイルフォーマットに従ったヘッダ部を出力 */
static WAVError WAVWriter_PutWAVHeader(
struct WAVWriter* writer, const struct WAVFileFormat* format)
{
uint32_t filesize, pcm_data_size;
/* 引数チェック */
if (writer == NULL || format == NULL) {
return WAV_ERROR_INVALID_PARAMETER;
}
/* フォーマットチェック */
/* PCM以外は対応していない */
if (format->data_format != WAV_DATA_FORMAT_PCM) {
return WAV_ERROR_INVALID_FORMAT;
}
/* PCM データサイズ */
pcm_data_size
= format->num_samples * (format->bits_per_sample / 8) * format->num_channels;
/* ファイルサイズ */
filesize
= pcm_data_size
+ 44; /* "RIFF" から ("data"のサイズ) までのフィールドのバイト数
拡張部分を一切含まない */
/* ヘッダ 'R', 'I', 'F', 'F' を出力 */
if (WAVWriter_PutBits(writer, 'R', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'I', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'F', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'F', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* ファイルサイズ-8(この要素以降のサイズ) */
if (WAVWriter_PutLittleEndianBytes(writer, 4, filesize - 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
/* ヘッダ 'W', 'A', 'V', 'E' を出力 */
if (WAVWriter_PutBits(writer, 'W', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'A', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'V', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'E', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* fmtチャンクのヘッダ 'f', 'm', 't', ' ' を出力 */
if (WAVWriter_PutBits(writer, 'f', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'm', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 't', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, ' ', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* fmtチャンクのバイト数を出力 (補足)現在は16byte決め打ち */
if (WAVWriter_PutLittleEndianBytes(writer, 4, 16) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* フォーマットIDを出力 (補足)現在は1(リニアPCM)決め打ち */
if (WAVWriter_PutLittleEndianBytes(writer, 2, 1) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* チャンネル数 */
if (WAVWriter_PutLittleEndianBytes(writer, 2, format->num_channels) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* サンプリングレート */
if (WAVWriter_PutLittleEndianBytes(writer, 4, format->sampling_rate) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* データ速度(byte/sec) */
if (WAVWriter_PutLittleEndianBytes(writer, 4,
format->sampling_rate * (format->bits_per_sample / 8) * format->num_channels)
!= WAV_ERROR_OK) { return WAV_ERROR_IO; }
/* ブロックあたりサイズ数 */
if (WAVWriter_PutLittleEndianBytes(writer, 2,
(format->bits_per_sample / 8) * format->num_channels)
!= WAV_ERROR_OK) { return WAV_ERROR_IO; }
/* 量子化ビット数(サンプルあたりのビット数) */
if (WAVWriter_PutLittleEndianBytes(writer, 2, format->bits_per_sample) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* "data" チャンクのヘッダ出力 */
if (WAVWriter_PutBits(writer, 'd', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'a', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 't', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
if (WAVWriter_PutBits(writer, 'a', 8) != WAV_ERROR_OK) { return WAV_ERROR_IO; };
/* 波形データバイト数 */
if (WAVWriter_PutLittleEndianBytes(writer, 4, pcm_data_size) != WAV_ERROR_OK) { return WAV_ERROR_IO; }
return WAV_ERROR_OK;
}
/* ライタを使用してPCMデータ出力 */
static WAVError WAVWriter_PutWAVPcmData(
struct WAVWriter* writer, const struct WAVFile* wavfile)
{
uint32_t ch, sample, bytes_per_sample;
int32_t (*convert_sint32_to_pcmdata_func)(int32_t);
/* ビット深度に合わせてPCMデータの変換関数を決定 */
switch (wavfile->format.bits_per_sample) {
case 8:
convert_sint32_to_pcmdata_func = WAV_Convert32bitPCMto8bitPCM;
break;
case 16:
convert_sint32_to_pcmdata_func = WAV_Convert32bitPCMto16bitPCM;
break;
case 24:
convert_sint32_to_pcmdata_func = WAV_Convert32bitPCMto24bitPCM;
break;
case 32:
convert_sint32_to_pcmdata_func = WAV_Convert32bitPCMto32bitPCM;
break;
default:
/* fprintf(stderr, "Unsupported bits per sample format(=%d). \n", wavfile->format.bits_per_sample); */
return WAV_ERROR_INVALID_FORMAT;
}
/* チャンネルインターリーブしつつ出力 */
bytes_per_sample = wavfile->format.bits_per_sample / 8;
for (sample = 0; sample < wavfile->format.num_samples; sample++) {
for (ch = 0; ch < wavfile->format.num_channels; ch++) {
if (WAVWriter_PutLittleEndianBytes(writer,
bytes_per_sample,
(uint64_t)convert_sint32_to_pcmdata_func(WAVFile_PCM(wavfile, sample, ch))) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
}
}
return WAV_ERROR_OK;
}
/* ファイル書き出し */
WAVApiResult WAV_WriteToFile(
const char* filename, const struct WAVFile* wavfile)
{
struct WAVWriter writer;
FILE* fp;
/* 引数チェック */
if (filename == NULL || wavfile == NULL) {
return WAV_APIRESULT_INVALID_PARAMETER;
}
/* wavファイルを開く */
fp = fopen(filename, "wb");
if (fp == NULL) {
/* fprintf(stderr, "Failed to open %s. \n", filename); */
return WAV_APIRESULT_NG;
}
/* ライタ初期化 */
WAVWriter_Initialize(&writer, fp);
/* ヘッダ書き出し */
if (WAVWriter_PutWAVHeader(&writer, &wavfile->format) != WAV_ERROR_OK) {
return WAV_APIRESULT_NG;
}
/* データ書き出し */
if (WAVWriter_PutWAVPcmData(&writer, wavfile) != WAV_ERROR_OK) {
return WAV_APIRESULT_NG;
}
/* ライタ終了 */
WAVWriter_Finalize(&writer);
/* ファイルを閉じる */
fclose(fp);
/* 正常終了 */
return WAV_APIRESULT_OK;
}
/* ライタの初期化 */
static void WAVWriter_Initialize(struct WAVWriter* writer, FILE* fp)
{
writer->fp = fp;
writer->bit_count = 8;
writer->bit_buffer = 0;
memset(&writer->buffer, 0, sizeof(struct WAVBitBuffer));
writer->buffer.byte_pos = 0;
}
/* ライタの終了 */
static void WAVWriter_Finalize(struct WAVWriter* writer)
{
/* バッファに余っているデータを書き出し */
WAVWriter_Flush(writer);
/* メンバをクリア */
writer->fp = NULL;
writer->bit_count = 8;
writer->bit_buffer = 0;
memset(&writer->buffer, 0, sizeof(struct WAVBitBuffer));
writer->buffer.byte_pos = 0;
}
/* valの下位n_bitを書き込む(ビッグエンディアンで) */
static WAVError WAVWriter_PutBits(struct WAVWriter* writer, uint64_t val, uint32_t n_bits)
{
/* 無効な引数 */
if (writer == NULL) {
return WAV_ERROR_INVALID_PARAMETER;
}
/* valの上位ビットから順次出力
* 初回ループでは端数(出力に必要なビット数)分を埋め出力
* 2回目以降は8bit単位で出力 */
while (n_bits >= writer->bit_count) {
n_bits -= writer->bit_count;
writer->bit_buffer |= (uint8_t)WAV_GetLowerBits(writer->bit_count, val >> n_bits);
/* バッファに追記 */
writer->buffer.bytes[writer->buffer.byte_pos++] = (uint8_t)(writer->bit_buffer & 0xFF);
/* バッファが一杯になったら書き出し */
if (writer->buffer.byte_pos == WAVBITBUFFER_BUFFER_SIZE) {
if (fwrite(writer->buffer.bytes,
sizeof(uint8_t), WAVBITBUFFER_BUFFER_SIZE,
writer->fp) < WAVBITBUFFER_BUFFER_SIZE) {
return WAV_ERROR_IO;
}
/* 書き込み位置をリセット */
writer->buffer.byte_pos = 0;
}
writer->bit_buffer = 0;
writer->bit_count = 8;
}
/* 端数ビットの処理:
* 残った分をバッファの上位ビットにセット */
writer->bit_count -= n_bits;
writer->bit_buffer |= (uint8_t)(WAV_GetLowerBits(n_bits, (uint32_t)val) << writer->bit_count);
return WAV_ERROR_OK;
}
/* リトルエンディアンでビットパターンを出力 */
static WAVError WAVWriter_PutLittleEndianBytes(
struct WAVWriter* writer, uint32_t nbytes, uint64_t data)
{
uint64_t out;
uint32_t i_byte;
/* リトルエンディアンに並び替え */
out = 0;
for (i_byte = 0; i_byte < nbytes; i_byte++) {
out |= ((data >> (8 * (nbytes - i_byte - 1))) & 0xFFUL) << (8 * i_byte);
}
/* 出力 */
if (WAVWriter_PutBits(writer, out, (uint8_t)(nbytes * 8)) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
return WAV_ERROR_OK;
}
/* バッファにたまったビットをクリア */
static WAVError WAVWriter_Flush(struct WAVWriter* writer)
{
/* 引数チェック */
if (writer == NULL) {
return WAV_ERROR_INVALID_PARAMETER;
}
/* 余ったビットを強制出力 */
if (writer->bit_count != 8) {
if (WAVWriter_PutBits(writer, 0, (uint8_t)writer->bit_count) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
writer->bit_buffer = 0;
writer->bit_count = 8;
}
/* バッファに残っているデータをフラッシュ */
if (fwrite(writer->buffer.bytes,
sizeof(uint8_t), (uint32_t)writer->buffer.byte_pos,
writer->fp) < (size_t)writer->buffer.byte_pos) {
return WAV_ERROR_IO;
}
/* バッファ残量は0に */
writer->buffer.byte_pos = 0;
return WAV_ERROR_OK;
}
/* リトルエンディアンでビットパターンを取得 */
static WAVError WAVParser_GetLittleEndianBytes(
struct WAVParser* parser, uint32_t nbytes, uint64_t* bitsbuf)
{
uint64_t tmp, ret;
uint32_t i_byte;
/* ビッグエンディアンで取得 */
if (WAVParser_GetBits(parser, nbytes * 8, &tmp) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
/* リトルエンディアンに並び替え */
ret = 0;
for (i_byte = 0; i_byte < nbytes; i_byte++) {
ret |= ((tmp >> (8 * (nbytes - i_byte - 1))) & 0xFFUL) << (8 * i_byte);
}
*bitsbuf = ret;
return WAV_ERROR_OK;
}
/* パーサを使用して文字列取得 */
static WAVError WAVParser_GetString(
struct WAVParser* parser, char* string_buffer, uint32_t string_length)
{
uint32_t i_byte;
uint64_t bitsbuf;
assert(parser != NULL && string_buffer != NULL);
/* 文字列取得 */
for (i_byte = 0; i_byte < string_length; i_byte++) {
/* 1文字取得 */
if (WAVParser_GetBits(parser, 8, &bitsbuf) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
string_buffer[i_byte] = (char)bitsbuf;
}
return WAV_ERROR_OK;
}
/* パーサを使用して文字列取得/一致チェック */
static WAVError WAVParser_CheckSignatureString(
struct WAVParser* parser, const char* signature, uint32_t signature_length)
{
uint32_t i_byte;
uint64_t bitsbuf;
assert(parser != NULL && signature != NULL);
/* 文字列取得/検査 */
for (i_byte = 0; i_byte < signature_length; i_byte++) {
/* 1文字取得 */
if (WAVParser_GetBits(parser, 8, &bitsbuf) != WAV_ERROR_OK) {
return WAV_ERROR_IO;
}
/* シグネチャ検査 */
if (signature[i_byte] != (char)bitsbuf) {
/* fprintf(stderr, "Failed to check %s header signature. \n", signature); */
return WAV_ERROR_INVALID_FORMAT;
}
}
return WAV_ERROR_OK;
}