Explorar el Código

fixed error where 9-bit status chunk was being produced and added maximum length check

dds
Matt Bradshaw hace 6 años
padre
commit
f90eb6b81c
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. +3
    -2
      extras/wav2sketch/wav2sketch.js

+ 3
- 2
extras/wav2sketch/wav2sketch.js Ver fichero

@@ -45,8 +45,9 @@ function processFile(file, fileName) {
var padLength = padding(outputData.length, 128);

var statusInt = (outputData.length*2).toString(16);
while(statusInt.length < 4) statusInt = '0' + statusInt;
statusInt = '0x8100' + statusInt;
while(statusInt.length < 6) statusInt = '0' + statusInt;
if(outputData.length*2>0xFFFFFF) alert("DATA TOO LONG");
statusInt = '0x81' + statusInt;
outputData.unshift(statusInt);

for(var i=0;i<padLength;i++) {

Cargando…
Cancelar
Guardar