Corrected array size for decimator by 64

pull/6/head
f4exb 2015-10-21 21:17:43 +02:00
rodzic 35440d60f6
commit 13a91aacb6
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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)
{