Explorar el Código

AudioAnalyzeRMS needs to treat no input as zeros

dds
PaulStoffregen hace 7 años
padre
commit
cc44014a69
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      analyze_rms.cpp

+ 4
- 1
analyze_rms.cpp Ver fichero

@@ -31,7 +31,10 @@
void AudioAnalyzeRMS::update(void)
{
audio_block_t *block = receiveReadOnly();
if (!block) return;
if (!block) {
count++;
return;
}
#if defined(KINETISK)
uint32_t *p = (uint32_t *)(block->data);
uint32_t *end = p + AUDIO_BLOCK_SAMPLES/2;

Cargando…
Cancelar
Guardar