Fixed decimator by 64 centered

This commit is contained in:
f4exb 2015-09-12 01:25:20 +02:00
parent 76d52e75fc
commit f97671ae93
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ void Decimators<T, SdrBits, InputBits>::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<SdrBits, InputBits>::post64);
(**it).setImag(y5 >> decimation_shifts<SdrBits, InputBits>::post64);