-
Notifications
You must be signed in to change notification settings - Fork 11
/
wave.h
304 lines (257 loc) · 9.69 KB
/
wave.h
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
#ifndef __WAVE_H_INCLUDED__
#define __WAVE_H_INCLUDED__
#define HEADERSIZE 44
typedef struct {
signed short l;
signed short r;
} Soundsample16;
typedef struct {
unsigned char l;
unsigned char r;
} Soundsample8;
typedef struct {
unsigned short channelnum; // モノラルなら1、ステレオなら2
unsigned long samplingrate; // Hz単位
unsigned short bit_per_sample; // 1サンプルあたりのbit数
unsigned long datanum; // モノラルならサンプル数を、ステレオなら左右1サンプルずつの組の数
unsigned char *monaural8; // 8ビットモノラルのデータならこれを使う
signed short *monaural16; // 16ビットモノラルならばこれを使う
Soundsample8 *stereo8; // 8ビットステレオならばこれを使う
Soundsample16 *stereo16; // 16ビットステレオならばこれを使う
} Sound;
// 取得に成功すればポインタを失敗すればNULLを返す
Sound *readWave(char *filename);
// 書き込みに成功すれば0を失敗すれば1を返す
int writeWave(char *filename, Sound *snd);
// Soundを作成し、引数の情報に合わせて領域の確保をする。使われる形式以外の領域のポインタはNULL
// 成功すればポインタを、失敗すればNULLを返す
Sound *createSound(unsigned short channelnum, unsigned long samplingrate, unsigned short bit_per_sample, unsigned long datasize);
// Soundを開放する
void freeSound(Sound *snd);
#include <stdio.h>
#include <malloc.h>
#include <memory.h>
Sound *createSound(unsigned short channelnum, unsigned long samplingrate, unsigned short bit_per_sample, unsigned long datasize)
{
Sound *snd;
if ((snd = (Sound *)malloc(sizeof(Sound))) == NULL) {
fprintf(stderr, "Allocation error\n");
return NULL;
}
snd->channelnum = channelnum;
snd->samplingrate = samplingrate;
snd->bit_per_sample = bit_per_sample;
snd->datanum = datasize / (channelnum*(bit_per_sample/8));
snd->monaural8 = NULL;
snd->monaural16 = NULL;
snd->stereo8 = NULL;
snd->stereo16 = NULL;
if (channelnum == 1 && bit_per_sample == 8) {
if ((snd->monaural8 = (unsigned char *)malloc(datasize)) == NULL) {
fprintf(stderr, "Allocation error\n");
free(snd);
return NULL;
}
} else if (channelnum == 1 && bit_per_sample == 16) {
if ((snd->monaural16 = (signed short *)malloc(sizeof(signed short)*snd->datanum)) == NULL) {
fprintf(stderr, "Allocation error\n");
free(snd);
return NULL;
}
} else if (channelnum == 2 && bit_per_sample == 8) {
if ((snd->stereo8 = (Soundsample8 *)malloc(sizeof(Soundsample8)*snd->datanum)) == NULL) {
fprintf(stderr, "Allocation error\n");
free(snd);
return NULL;
}
} else if (channelnum == 2 && bit_per_sample == 16) {
if ((snd->stereo16 = (Soundsample16 *)malloc(sizeof(Soundsample16)*snd->datanum)) == NULL) {
fprintf(stderr, "Allocation error\n");
free(snd);
return NULL;
}
} else {
fprintf(stderr, "Channelnum or Bit/Sample unknown");
free(snd);
return NULL;
}
return snd;
}
void freeSound(Sound *snd)
{
if (snd->channelnum == 1 && snd->bit_per_sample == 8) {
free(snd->monaural8);
} else if (snd->channelnum == 1 && snd->bit_per_sample == 16) {
free(snd->monaural16);
} else if (snd->channelnum == 2 && snd->bit_per_sample == 8) {
free(snd->stereo8);
} else {
free(snd->stereo16);
}
free(snd);
}
Sound *readWave(char *filename)
{
unsigned int i;
unsigned char header_buf[20]; // フォーマットチャンクのサイズまでのヘッダ情報を取り込む
FILE *fp;
Sound *snd;
unsigned long datasize; // 波形データのバイト数
unsigned short fmtid; // fmtのIDを格納する
unsigned short channelnum; // チャンネル数
unsigned long samplingrate; // サンプリング周波数
unsigned short bit_per_sample; // 量子化ビット数
unsigned char *buf; // フォーマットチャンクIDから拡張部分までのデータを取り込む
unsigned long fmtsize;
if ((fp = fopen(filename, "rb")) == NULL) {
fprintf(stderr, "Error: %s could not read.", filename);
return NULL;
}
fread(header_buf, sizeof(unsigned char), 20, fp); // フォーマットチャンクサイズまでのヘッダ部分を取り込む
// ファイルがRIFF形式であるか
if (strncmp(header_buf, "RIFF", 4)) {
fprintf(stderr, "Error: %s is not RIFF.", filename);
fclose(fp);
return NULL;
}
// ファイルがWAVEファイルであるか
if (strncmp(header_buf + 8, "WAVE", 4)) {
fprintf(stderr, "Error: %s is not WAVE.", filename);
fclose(fp);
return NULL;
}
// fmt のチェック
if (strncmp(header_buf + 12, "fmt ", 4)) {
fprintf(stderr, "Error: %s fmt not found.", filename);
fclose(fp);
return NULL;
}
memcpy(&fmtsize, header_buf + 16, sizeof(fmtsize));
//printf("%d\n", (sizeof(unsigned char)*fmtsize));//18
if ((buf = (unsigned char *)malloc(sizeof(unsigned char)*fmtsize)) == NULL) {
fprintf(stderr, "Allocation error\n");
fclose(fp);
return NULL;
}
fread(buf, sizeof(unsigned char), fmtsize, fp); // フォーマットIDから拡張部分までのヘッダ部分を取り込む
memcpy(&fmtid, buf, sizeof(fmtid)); // LinearPCMファイルならば1が入る
if (fmtid!=1) {
// http://www.web-sky.org/program/other/wave.php
fprintf(stderr, "Error: %s is not LinearPCM. Format is [%d].\n", filename, fmtid);
fclose(fp);
return NULL;
}
memcpy(&channelnum, buf + 2, sizeof(channelnum)); // チャンネル数を取得
memcpy(&samplingrate, buf + 4, sizeof(samplingrate)); // サンプリング周波数を取得
memcpy(&bit_per_sample, buf + 14, sizeof(bit_per_sample)); // 量子化ビット数を取得
fread(buf, sizeof(unsigned char), 8, fp); // factもしくはdataのIDとサイズを取得8バイト
if (!strncmp(buf, "fact", 4)) {
fread(buf, sizeof(unsigned char), 4, fp);
fread(buf, sizeof(unsigned char), 8, fp);
}
if (strncmp(buf, "data", 4)) {
do {
// 余分なチャンクを飛ばす
int size;
memcpy(&size, buf + 4, sizeof(size));
// printf("%c%c%c%c len:%d\n", buf[0], buf[1], buf[2], buf[3], size);
// fread(buf, sizeof(unsigned char), size, fp);
fseek(fp, size, SEEK_CUR);
fread(buf, sizeof(unsigned char), 8, fp);
} while (strncmp(buf, "data", 4));
// fprintf(stderr, "Error: %s data part not found.", filename);
// fclose(fp);
// return NULL;
}
memcpy(&datasize, buf + 4, sizeof(datasize)); //波形データのサイズの取得
if ((snd = createSound(channelnum, samplingrate, bit_per_sample, datasize)) == NULL) {
fclose(fp);
return NULL;
}
if (channelnum==1 && bit_per_sample==8) {
fread(snd->monaural8, sizeof(unsigned char), snd->datanum, fp); // データ部分を全て取り込む
} else if (channelnum==1 && bit_per_sample==16) {
fread(snd->monaural16, sizeof(signed short), snd->datanum, fp);
} else if (channelnum==2 && bit_per_sample==8) {
for (i=0; i<snd->datanum; i++) {
fread(&(snd->stereo8[i].l), sizeof(unsigned char), 1, fp);
fread(&(snd->stereo8[i].r), sizeof(unsigned char), 1, fp);
}
} else if (channelnum==2 && bit_per_sample==16) {
for (i=0; i<snd->datanum; i++) {
fread(&(snd->stereo16[i].l), sizeof(signed short), 1, fp);
fread(&(snd->stereo16[i].r), sizeof(signed short), 1, fp);
}
} else {
fprintf(stderr, "Header is destroyed.");
fclose(fp);
freeSound(snd);
}
return snd;
}
int writeWave(char *filename, Sound *snd)
{
int i;
FILE *fp;
unsigned char header_buf[HEADERSIZE]; // ヘッダを格納する
unsigned long fswrh; // リフヘッダ以外のファイルサイズ
unsigned long fmtchunksize; // fmtチャンクのサイズ
unsigned long dataspeed; // データ速度
unsigned short blocksize; // 1ブロックあたりのバイト数
unsigned long datasize; // 周波数データのバイト数
unsigned short fmtid; // フォーマットID
if ((fp = fopen(filename, "wb")) == NULL) {
fprintf(stderr, "Error: %s could not open.", filename);
return 1;
}
fmtchunksize = 16;
blocksize = snd->channelnum * (snd->bit_per_sample/8);
dataspeed = snd->samplingrate * blocksize;
datasize = snd->datanum * blocksize;
fswrh = datasize + HEADERSIZE - 8;
fmtid = 1;
header_buf[0] = 'R';
header_buf[1] = 'I';
header_buf[2] = 'F';
header_buf[3] = 'F';
memcpy(header_buf + 4, &fswrh, sizeof(fswrh));
header_buf[8] = 'W';
header_buf[9] = 'A';
header_buf[10] = 'V';
header_buf[11] = 'E';
header_buf[12] = 'f';
header_buf[13] = 'm';
header_buf[14] = 't';
header_buf[15] = ' ';
memcpy(header_buf + 16, &fmtchunksize, sizeof(fmtchunksize));
memcpy(header_buf + 20, &fmtid, sizeof(fmtid));
memcpy(header_buf + 22, &(snd->channelnum), sizeof(snd->channelnum));
memcpy(header_buf + 24, &(snd->samplingrate), sizeof(snd->samplingrate));
memcpy(header_buf + 28, &dataspeed, sizeof(dataspeed));
memcpy(header_buf + 32, &blocksize, sizeof(blocksize));
memcpy(header_buf + 34, &(snd->bit_per_sample), sizeof(snd->bit_per_sample));
header_buf[36] = 'd';
header_buf[37] = 'a';
header_buf[38] = 't';
header_buf[39] = 'a';
memcpy(header_buf + 40, &datasize, sizeof(datasize));
fwrite(header_buf, sizeof(unsigned char), HEADERSIZE, fp);
if (snd->channelnum==1 && snd->bit_per_sample==8) {
fwrite(snd->monaural8, sizeof(unsigned char), snd->datanum, fp); // データ部分を全て書き込む
} else if (snd->channelnum==1 && snd->bit_per_sample==16) {
fwrite(snd->monaural16, sizeof(signed short), snd->datanum, fp);
} else if (snd->channelnum==2 && snd->bit_per_sample==8) {
for (i=0; i<snd->datanum; i++) {
fwrite(&(snd->stereo8[i].l), sizeof(unsigned char), 1, fp);
fwrite(&(snd->stereo8[i].r), sizeof(unsigned char), 1, fp);
}
} else {
for (i=0; i<snd->datanum; i++) {
fwrite(&(snd->stereo16[i].l), sizeof(signed short), 1, fp);
fwrite(&(snd->stereo16[i].r), sizeof(signed short), 1, fp);
}
}
fclose(fp);
return 0;
}
#endif /*__WAVE_H_INCLUDED__*/