remove excessive comments in flacEncodeWorker.js

This commit is contained in:
Radium Zheng 2018-07-09 19:38:28 +10:00
parent 9c769a650e
commit ae0bd9e64e
1 changed files with 0 additions and 11 deletions

View File

@ -403,14 +403,3 @@ self.onmessage = function(e) {
break;
}
};
/**
* if(wavBuffers.length > 0){
//if there is buffered audio: encode buffered first (and clear buffer)
var len = wavBuffers.length;
var buffered = wavBuffers.splice(0, len);
for(var i=0; i < len; ++i){
doEncodeFlac(buffered[i]);
}
}
*/