Explorar el Código

put pointer assignment after test

I put the line I had moved into the loop the wrong side of the test
conditional.
dds
robsoles hace 11 años
padre
commit
d90ea2c06f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      filter_biquad.cpp

+ 1
- 1
filter_biquad.cpp Ver fichero

@@ -35,8 +35,8 @@ void AudioFilterBiquad::update(void)
uint32_t *data, *end;
int32_t *state;
block = receiveWritable();
data = (uint32_t *)(block->data);
if (!block) return;
data = (uint32_t *)(block->data);
end = data + AUDIO_BLOCK_SAMPLES/2;
state = (int32_t *)definition;
do {

Cargando…
Cancelar
Guardar