scratch-audio/src/ADPCMSoundDecoder.js

167 lines
6.2 KiB
JavaScript
Raw Normal View History

2017-04-17 11:22:16 -04:00
const ArrayBufferStream = require('./ArrayBufferStream');
const Tone = require('tone');
const log = require('./log');
2016-11-16 17:06:34 -05:00
2017-02-02 15:48:26 -05:00
/**
* Decode wav audio files that have been compressed with the ADPCM format.
2017-02-02 14:53:17 -05:00
* This is necessary because, while web browsers have native decoders for many audio
* formats, ADPCM is a non-standard format used by Scratch since its early days.
* This decoder is based on code from Scratch-Flash:
* https://github.com/LLK/scratch-flash/blob/master/src/sound/WAVFile.as
* @constructor
*/
function ADPCMSoundDecoder () {
2016-11-16 17:06:34 -05:00
}
2017-02-02 14:53:17 -05:00
/**
* Decode an ADPCM sound stored in an ArrayBuffer and return a promise
* with the decoded audio buffer.
* @param {ArrayBuffer} audioData - containing ADPCM encoded wav audio
2017-02-02 14:53:17 -05:00
* @return {Tone.Buffer}
*/
ADPCMSoundDecoder.prototype.decode = function (audioData) {
2016-11-19 14:17:43 -05:00
2017-04-17 11:22:16 -04:00
return new Promise((resolve, reject) => {
const stream = new ArrayBufferStream(audioData);
2016-11-19 14:17:43 -05:00
2017-04-17 11:22:16 -04:00
const riffStr = stream.readUint8String(4);
if (riffStr != 'RIFF') {
log.warn('incorrect adpcm wav header');
reject();
}
2016-11-19 14:17:43 -05:00
2017-04-17 11:22:16 -04:00
const lengthInHeader = stream.readInt32();
if ((lengthInHeader + 8) != audioData.byteLength) {
2017-04-17 11:22:16 -04:00
log.warn(`adpcm wav length in header: ${lengthInHeader} is incorrect`);
}
2016-11-19 14:17:43 -05:00
2017-04-17 11:22:16 -04:00
const wavStr = stream.readUint8String(4);
if (wavStr != 'WAVE') {
log.warn('incorrect adpcm wav header');
reject();
}
2016-11-19 14:17:43 -05:00
2017-04-17 11:22:16 -04:00
const formatChunk = this.extractChunk('fmt ', stream);
this.encoding = formatChunk.readUint16();
this.channels = formatChunk.readUint16();
this.samplesPerSecond = formatChunk.readUint32();
this.bytesPerSecond = formatChunk.readUint32();
this.blockAlignment = formatChunk.readUint16();
this.bitsPerSample = formatChunk.readUint16();
formatChunk.position += 2; // skip extra header byte count
this.samplesPerBlock = formatChunk.readUint16();
this.adpcmBlockSize = ((this.samplesPerBlock - 1) / 2) + 4; // block size in bytes
2017-04-17 11:22:16 -04:00
const samples = this.imaDecompress(this.extractChunk('data', stream), this.adpcmBlockSize);
// todo: this line is the only place Tone is used here, should be possible to remove
2017-04-17 11:22:16 -04:00
const buffer = Tone.context.createBuffer(1, samples.length, this.samplesPerSecond);
// todo: optimize this? e.g. replace the divide by storing 1/32768 and multiply?
2017-04-17 11:22:16 -04:00
for (let i = 0; i < samples.length; i++) {
buffer.getChannelData(0)[i] = samples[i] / 32768;
}
2016-11-19 14:17:43 -05:00
resolve(buffer);
2017-04-17 11:22:16 -04:00
});
2016-11-19 14:17:43 -05:00
};
2017-02-02 14:53:17 -05:00
/**
* Data used by the decompression algorithm
* @type {Array}
*/
ADPCMSoundDecoder.prototype.stepTable = [
2016-11-19 14:17:43 -05:00
7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 21, 23, 25, 28, 31, 34, 37, 41, 45,
50, 55, 60, 66, 73, 80, 88, 97, 107, 118, 130, 143, 157, 173, 190, 209, 230,
253, 279, 307, 337, 371, 408, 449, 494, 544, 598, 658, 724, 796, 876, 963,
1060, 1166, 1282, 1411, 1552, 1707, 1878, 2066, 2272, 2499, 2749, 3024, 3327,
3660, 4026, 4428, 4871, 5358, 5894, 6484, 7132, 7845, 8630, 9493, 10442, 11487,
12635, 13899, 15289, 16818, 18500, 20350, 22385, 24623, 27086, 29794, 32767];
2017-02-02 14:53:17 -05:00
/**
* Data used by the decompression algorithm
* @type {Array}
*/
ADPCMSoundDecoder.prototype.indexTable = [
2016-11-19 14:17:43 -05:00
-1, -1, -1, -1, 2, 4, 6, 8,
-1, -1, -1, -1, 2, 4, 6, 8];
2017-02-02 14:53:17 -05:00
/**
* Extract a chunk of audio data from the stream, consisting of a set of audio data bytes
* @param {string} chunkType - the type of chunk to extract. 'data' or 'fmt' (format)
* @param {ArrayBufferStream} stream - an stream containing the audio data
* @return {ArrayBufferStream} a stream containing the desired chunk
*/
ADPCMSoundDecoder.prototype.extractChunk = function (chunkType, stream) {
2016-11-16 17:06:34 -05:00
stream.position = 12;
while (stream.position < (stream.getLength() - 8)) {
2017-04-17 11:22:16 -04:00
const typeStr = stream.readUint8String(4);
const chunkSize = stream.readInt32();
2016-11-16 17:06:34 -05:00
if (typeStr == chunkType) {
2017-04-17 11:22:16 -04:00
const chunk = stream.extract(chunkSize);
2016-11-16 17:06:34 -05:00
return chunk;
}
2017-04-17 11:22:16 -04:00
stream.position += chunkSize;
2016-11-16 17:06:34 -05:00
}
};
2017-02-02 14:53:17 -05:00
/**
* Decompress sample data using the IMA ADPCM algorithm.
* Note: Handles only one channel, 4-bits per sample.
* @param {ArrayBufferStream} compressedData - a stream of compressed audio samples
* @param {number} blockSize - the number of bytes in the stream
* @return {Int16Array} the uncompressed audio samples
*/
ADPCMSoundDecoder.prototype.imaDecompress = function (compressedData, blockSize) {
2017-04-17 11:22:16 -04:00
let sample, step, code, delta;
let index = 0;
let lastByte = -1; // -1 indicates that there is no saved lastByte
const out = [];
2016-11-16 17:06:34 -05:00
// Bail and return no samples if we have no data
if (!compressedData) return out;
compressedData.position = 0;
2017-04-17 11:22:16 -04:00
const a = 0;
while (a == 0) {
2016-11-16 17:06:34 -05:00
if (((compressedData.position % blockSize) == 0) && (lastByte < 0)) { // read block header
if (compressedData.getBytesAvailable() == 0) break;
sample = compressedData.readInt16();
index = compressedData.readUint8();
compressedData.position++; // skip extra header byte
if (index > 88) index = 88;
out.push(sample);
} else {
// read 4-bit code and compute delta from previous sample
if (lastByte < 0) {
if (compressedData.getBytesAvailable() == 0) break;
lastByte = compressedData.readUint8();
code = lastByte & 0xF;
} else {
code = (lastByte >> 4) & 0xF;
lastByte = -1;
}
step = this.stepTable[index];
delta = 0;
if (code & 4) delta += step;
if (code & 2) delta += step >> 1;
if (code & 1) delta += step >> 2;
delta += step >> 3;
// compute next index
index += this.indexTable[code];
if (index > 88) index = 88;
if (index < 0) index = 0;
// compute and output sample
sample += (code & 8) ? -delta : delta;
if (sample > 32767) sample = 32767;
if (sample < -32768) sample = -32768;
out.push(sample);
}
}
2017-04-17 11:22:16 -04:00
const samples = Int16Array.from(out);
2016-11-16 17:06:34 -05:00
return samples;
};
module.exports = ADPCMSoundDecoder;