From f97671ae93266a240811b0e0c9cd6e735c9ac6cd Mon Sep 17 00:00:00 2001 From: f4exb Date: Sat, 12 Sep 2015 01:25:20 +0200 Subject: [PATCH] Fixed decimator by 64 centered --- include-gpl/dsp/decimators.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include-gpl/dsp/decimators.h b/include-gpl/dsp/decimators.h index f2e3362c2..0b13c6f96 100644 --- a/include-gpl/dsp/decimators.h +++ b/include-gpl/dsp/decimators.h @@ -401,7 +401,7 @@ void Decimators::decimate64_cen(SampleVector::iterator* i qint32 x5 = x4; qint32 y5 = y4; - if (m_decimator64.workDecimateCenter(&x4, &y4)) + if (m_decimator64.workDecimateCenter(&x5, &y5)) { (**it).setReal(x5 >> decimation_shifts::post64); (**it).setImag(y5 >> decimation_shifts::post64);