From 103614d0c9989a565bfe55188f3db5f695a49f03 Mon Sep 17 00:00:00 2001 From: Chip Audette Date: Sun, 19 Feb 2017 22:18:01 -0500 Subject: [PATCH] AudioMixer: fix bug in 8-channel mixer --- AudioMixer_F32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AudioMixer_F32.cpp b/AudioMixer_F32.cpp index 59fe8b5..092b3f7 100644 --- a/AudioMixer_F32.cpp +++ b/AudioMixer_F32.cpp @@ -38,7 +38,7 @@ void AudioMixer8_F32::update(void) { arm_scale_f32(out->data, multiplier[0], out->data, out->length); //scale the first input channel //load and process the rest of the channels - for (int channel=1; channel < 4; channel++) { + for (int channel=1; channel < 8; channel++) { in = receiveReadOnly_f32(channel); if (!in) { continue;