voice - prevent wrong data assumptions in processor

This commit is contained in:
Benjamin Pasero 2023-08-10 15:43:44 +02:00
Родитель 03ffebe2fc
Коммит 7e3f23966d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E6380CC4C8219E65
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -29,6 +29,10 @@ class BufferInputAudioProcessor extends AudioWorkletProcessor {
}
const inputChannelData = inputs[0][0];
if ((!(inputChannelData instanceof Float32Array))) {
return;
}
this.currentInputUint8Arrays.push(this.float32ArrayToUint8Array(inputChannelData.slice(0)));
if (Date.now() - this.startTime > this.bufferTimespan) {