From 13a91aacb6551a04c270d4f66c630fc88fcb3243 Mon Sep 17 00:00:00 2001 From: f4exb Date: Wed, 21 Oct 2015 21:17:43 +0200 Subject: [PATCH] Corrected array size for decimator by 64 --- include/dsp/decimators.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dsp/decimators.h b/include/dsp/decimators.h index 18e14950c..403e908fc 100644 --- a/include/dsp/decimators.h +++ b/include/dsp/decimators.h @@ -924,7 +924,7 @@ void Decimators::decimate32_cen(SampleVector::iterator* i template void Decimators::decimate64_cen(SampleVector::iterator* it, const T* buf, qint32 len) { - qint32 intbuf[63]; + qint32 intbuf[64]; for (int pos = 0; pos < len - 127; pos += 128) {