Comment the WAV extractor.

This commit is contained in:
n1073645 2019-11-08 14:59:06 +00:00 committed by d98762625
parent 2a73ce9faf
commit e0d3dcef88

View file

@ -2651,6 +2651,8 @@ export function extractBMP(bytes, offset) {
*/ */
export function extractWAV(bytes, offset) { export function extractWAV(bytes, offset) {
const stream = new Stream(bytes.slice(offset)); const stream = new Stream(bytes.slice(offset));
// Move to file size field.
stream.moveTo(4); stream.moveTo(4);
// Move to file size. // Move to file size.