mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-16 13:21:50 -05:00
Corrected array size for decimator by 64
This commit is contained in:
parent
35440d60f6
commit
13a91aacb6
@ -924,7 +924,7 @@ void Decimators<T, SdrBits, InputBits>::decimate32_cen(SampleVector::iterator* i
|
|||||||
template<typename T, uint SdrBits, uint InputBits>
|
template<typename T, uint SdrBits, uint InputBits>
|
||||||
void Decimators<T, SdrBits, InputBits>::decimate64_cen(SampleVector::iterator* it, const T* buf, qint32 len)
|
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)
|
for (int pos = 0; pos < len - 127; pos += 128)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user