1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

Corrected array size for decimator by 64

This commit is contained in:
f4exb 2015-10-21 21:17:43 +02:00
parent 35440d60f6
commit 13a91aacb6

View File

@ -924,7 +924,7 @@ void Decimators<T, SdrBits, InputBits>::decimate32_cen(SampleVector::iterator* i
template<typename T, uint SdrBits, uint InputBits>
void Decimators<T, SdrBits, InputBits>::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)
{