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
|
/*
* Copyright 2009 Phil Burk, Mobileer Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jsyn.util.soundfile;
import java.io.EOFException;
import java.io.IOException;
import com.jsyn.data.FloatSample;
import com.jsyn.data.SampleMarker;
import com.jsyn.util.SampleLoader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
class WAVEFileParser extends AudioFileParser implements ChunkHandler {
private static final Logger LOGGER = LoggerFactory.getLogger(WAVEFileParser.class);
static final short WAVE_FORMAT_PCM = 1;
static final short WAVE_FORMAT_IEEE_FLOAT = 3;
static final short WAVE_FORMAT_EXTENSIBLE = (short) 0xFFFE;
static final byte[] KSDATAFORMAT_SUBTYPE_IEEE_FLOAT = {
3, 0, 0, 0, 0, 0, 16, 0, -128, 0, 0, -86, 0, 56, -101, 113
};
static final byte[] KSDATAFORMAT_SUBTYPE_PCM = {
1, 0, 0, 0, 0, 0, 16, 0, -128, 0, 0, -86, 0, 56, -101, 113
};
static final int WAVE_ID = ('W' << 24) | ('A' << 16) | ('V' << 8) | 'E';
static final int FMT_ID = ('f' << 24) | ('m' << 16) | ('t' << 8) | ' ';
static final int DATA_ID = ('d' << 24) | ('a' << 16) | ('t' << 8) | 'a';
static final int CUE_ID = ('c' << 24) | ('u' << 16) | ('e' << 8) | ' ';
static final int FACT_ID = ('f' << 24) | ('a' << 16) | ('c' << 8) | 't';
static final int SMPL_ID = ('s' << 24) | ('m' << 16) | ('p' << 8) | 'l';
static final int LTXT_ID = ('l' << 24) | ('t' << 16) | ('x' << 8) | 't';
static final int LABL_ID = ('l' << 24) | ('a' << 16) | ('b' << 8) | 'l';
int samplesPerBlock = 0;
int blockAlign = 0;
private int numFactSamples = 0;
private short format;
WAVEFileParser() {
}
@Override
FloatSample finish() throws IOException {
if ((byteData == null)) {
throw new IOException("No data found in audio sample.");
}
float[] floatData = new float[numFrames * samplesPerFrame];
if (bitsPerSample == 16) {
SampleLoader.decodeLittleI16ToF32(byteData, 0, byteData.length, floatData, 0);
} else if (bitsPerSample == 24) {
SampleLoader.decodeLittleI24ToF32(byteData, 0, byteData.length, floatData, 0);
} else if (bitsPerSample == 32) {
if (format == WAVE_FORMAT_IEEE_FLOAT) {
SampleLoader.decodeLittleF32ToF32(byteData, 0, byteData.length, floatData, 0);
} else if (format == WAVE_FORMAT_PCM) {
SampleLoader.decodeLittleI32ToF32(byteData, 0, byteData.length, floatData, 0);
} else {
throw new IOException("WAV: Unsupported format = " + format);
}
} else {
throw new IOException("WAV: Unsupported bitsPerSample = " + bitsPerSample);
}
return makeSample(floatData);
}
// typedef struct {
// long dwIdentifier;
// long dwPosition;
// ID fccChunk;
// long dwChunkStart;
// long dwBlockStart;
// long dwSampleOffset;
// } CuePoint;
/* Parse various chunks encountered in WAV file. */
void parseCueChunk(IFFParser parser, int ckSize) throws IOException {
int numCuePoints = parser.readIntLittle();
if (IFFParser.debug) {
LOGGER.debug("WAV: numCuePoints = " + numCuePoints);
}
if ((ckSize - 4) != (6 * 4 * numCuePoints))
throw new EOFException("Cue chunk too short!");
for (int i = 0; i < numCuePoints; i++) {
int dwName = parser.readIntLittle(); /* dwName */
int position = parser.readIntLittle(); // dwPosition
parser.skip(3 * 4); // fccChunk, dwChunkStart, dwBlockStart
int sampleOffset = parser.readIntLittle(); // dwPosition
if (IFFParser.debug) {
LOGGER.debug("WAV: parseCueChunk: #" + i + ", dwPosition = " + position
+ ", dwName = " + dwName + ", dwSampleOffset = " + sampleOffset);
}
SampleMarker cuePoint = findOrCreateCuePoint(dwName);
cuePoint.position = position;
}
}
void parseLablChunk(IFFParser parser, int ckSize) throws IOException {
int dwName = parser.readIntLittle();
int textLength = (ckSize - 4) - 1; // don't read NUL terminator
String text = parseString(parser, textLength);
if (IFFParser.debug) {
LOGGER.debug("WAV: label id = " + dwName + ", text = " + text);
}
SampleMarker cuePoint = findOrCreateCuePoint(dwName);
cuePoint.name = text;
}
void parseLtxtChunk(IFFParser parser, int ckSize) throws IOException {
int dwName = parser.readIntLittle();
int dwSampleLength = parser.readIntLittle();
parser.skip(4 + (4 * 2)); // purpose through codepage
int textLength = (ckSize - ((4 * 4) + (4 * 2))) - 1; // don't read NUL
// terminator
if (textLength > 0) {
String text = parseString(parser, textLength);
if (IFFParser.debug) {
LOGGER.debug("WAV: ltxt id = " + dwName + ", dwSampleLength = "
+ dwSampleLength + ", text = " + text);
}
SampleMarker cuePoint = findOrCreateCuePoint(dwName);
cuePoint.comment = text;
}
}
void parseFmtChunk(IFFParser parser, int ckSize) throws IOException {
format = parser.readShortLittle();
samplesPerFrame = parser.readShortLittle();
frameRate = parser.readIntLittle();
parser.readIntLittle(); /* skip dwAvgBytesPerSec */
blockAlign = parser.readShortLittle();
bitsPerSample = parser.readShortLittle();
if (IFFParser.debug) {
LOGGER.debug("WAV: format = 0x" + Integer.toHexString(format));
LOGGER.debug("WAV: bitsPerSample = " + bitsPerSample);
LOGGER.debug("WAV: samplesPerFrame = " + samplesPerFrame);
}
bytesPerFrame = blockAlign;
bytesPerSample = bytesPerFrame / samplesPerFrame;
samplesPerBlock = (8 * blockAlign) / bitsPerSample;
if (format == WAVE_FORMAT_EXTENSIBLE) {
int extraSize = parser.readShortLittle();
short validBitsPerSample = parser.readShortLittle();
int channelMask = parser.readIntLittle();
byte[] guid = new byte[16];
parser.read(guid);
if (IFFParser.debug) {
LOGGER.debug("WAV: extraSize = " + extraSize);
LOGGER.debug("WAV: validBitsPerSample = " + validBitsPerSample);
LOGGER.debug("WAV: channelMask = " + channelMask);
System.out.print("guid = {");
for (int i = 0; i < guid.length; i++) {
System.out.print(guid[i] + ", ");
}
LOGGER.debug("}");
}
if (matchBytes(guid, KSDATAFORMAT_SUBTYPE_IEEE_FLOAT)) {
format = WAVE_FORMAT_IEEE_FLOAT;
} else if (matchBytes(guid, KSDATAFORMAT_SUBTYPE_PCM)) {
format = WAVE_FORMAT_PCM;
}
}
if ((format != WAVE_FORMAT_PCM) && (format != WAVE_FORMAT_IEEE_FLOAT)) {
throw new IOException(
"Only WAVE_FORMAT_PCM and WAVE_FORMAT_IEEE_FLOAT supported. format = " + format);
}
if ((bitsPerSample != 16) && (bitsPerSample != 24) && (bitsPerSample != 32)) {
throw new IOException(
"Only 16 and 24 bit PCM or 32-bit float WAV files supported. width = "
+ bitsPerSample);
}
}
private boolean matchBytes(byte[] bar1, byte[] bar2) {
if (bar1.length != bar2.length)
return false;
for (int i = 0; i < bar1.length; i++) {
if (bar1[i] != bar2[i])
return false;
}
return true;
}
private int convertByteToFrame(int byteOffset) throws IOException {
if (blockAlign == 0) {
throw new IOException("WAV file has bytesPerBlock = zero");
}
if (samplesPerFrame == 0) {
throw new IOException("WAV file has samplesPerFrame = zero");
}
return (samplesPerBlock * byteOffset) / (samplesPerFrame * blockAlign);
}
private int calculateNumFrames(int numBytes) throws IOException {
int nFrames;
if (numFactSamples > 0) {
// nFrames = numFactSamples / samplesPerFrame;
nFrames = numFactSamples; // FIXME which is right
} else {
nFrames = convertByteToFrame(numBytes);
}
return nFrames;
}
// Read fraction in range of 0 to 0xFFFFFFFF and
// convert to 0.0 to 1.0 range.
private double readFraction(IFFParser parser) throws IOException {
// Put L at end or we get -1.
long maxFraction = 0x0FFFFFFFFL;
// Get unsigned fraction. Have to fit in long.
long fraction = (parser.readIntLittle()) & maxFraction;
return (double) fraction / (double) maxFraction;
}
void parseSmplChunk(IFFParser parser, int ckSize) throws IOException {
parser.readIntLittle(); // Manufacturer
parser.readIntLittle(); // Product
parser.readIntLittle(); // Sample Period
int unityNote = parser.readIntLittle();
double pitchFraction = readFraction(parser);
originalPitch = unityNote + pitchFraction;
parser.readIntLittle(); // SMPTE Format
parser.readIntLittle(); // SMPTE Offset
int numLoops = parser.readIntLittle();
parser.readIntLittle(); // Sampler Data
int lastCueID = Integer.MAX_VALUE;
for (int i = 0; i < numLoops; i++) {
int cueID = parser.readIntLittle();
parser.readIntLittle(); // type
int loopStartPosition = parser.readIntLittle();
// Point to sample one after.
int loopEndPosition = parser.readIntLittle() + 1;
// TODO handle fractional loop sizes?
double endFraction = readFraction(parser);
parser.readIntLittle(); // playCount
// Use lowest numbered cue.
if (cueID < lastCueID) {
sustainBegin = loopStartPosition;
sustainEnd = loopEndPosition;
}
}
}
void parseFactChunk(IFFParser parser, int ckSize) throws IOException {
numFactSamples = parser.readIntLittle();
}
void parseDataChunk(IFFParser parser, int ckSize) throws IOException {
long numRead;
dataPosition = parser.getOffset();
if (ifLoadData) {
byteData = new byte[ckSize];
numRead = parser.read(byteData);
} else {
numRead = parser.skip(ckSize);
}
if (numRead != ckSize) {
throw new EOFException("WAV data chunk too short! Read " + numRead + " instead of "
+ ckSize);
}
numFrames = calculateNumFrames(ckSize);
}
@Override
public void handleForm(IFFParser parser, int ckID, int ckSize, int type) throws IOException {
if ((ckID == IFFParser.RIFF_ID) && (type != WAVE_ID))
throw new IOException("Bad WAV form type = " + IFFParser.IDToString(type));
}
/**
* Called by parse() method to handle chunks in a WAV specific manner.
*
* @param ckID four byte chunk ID such as 'data'
* @param ckSize size of chunk in bytes
* @return number of bytes left in chunk
*/
@Override
public void handleChunk(IFFParser parser, int ckID, int ckSize) throws IOException {
switch (ckID) {
case FMT_ID:
parseFmtChunk(parser, ckSize);
break;
case DATA_ID:
parseDataChunk(parser, ckSize);
break;
case CUE_ID:
parseCueChunk(parser, ckSize);
break;
case FACT_ID:
parseFactChunk(parser, ckSize);
break;
case SMPL_ID:
parseSmplChunk(parser, ckSize);
break;
case LABL_ID:
parseLablChunk(parser, ckSize);
break;
case LTXT_ID:
parseLtxtChunk(parser, ckSize);
break;
default:
break;
}
}
/*
* (non-Javadoc)
* @see com.softsynth.javasonics.util.AudioSampleLoader#isLittleEndian()
*/
boolean isLittleEndian() {
return true;
}
}
|