1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 14:04:46 -04:00

RTLSDR: allow decimation by 32. Bumped to version 2.1.6

This commit is contained in:
f4exb
2016-10-10 02:19:21 +02:00
parent aa45dcbd17
commit 211f0570b5
6 changed files with 18 additions and 4 deletions
@@ -113,6 +113,9 @@ void RTLSDRThread::callback(const quint8* buf, qint32 len)
case 4:
m_decimators.decimate16_inf(&it, buf, len);
break;
case 5:
m_decimators.decimate32_inf(&it, buf, len);
break;
default:
break;
}
@@ -133,6 +136,9 @@ void RTLSDRThread::callback(const quint8* buf, qint32 len)
case 4:
m_decimators.decimate16_sup(&it, buf, len);
break;
case 5:
m_decimators.decimate32_sup(&it, buf, len);
break;
default:
break;
}
@@ -153,6 +159,9 @@ void RTLSDRThread::callback(const quint8* buf, qint32 len)
case 4:
m_decimators.decimate16_cen(&it, buf, len);
break;
case 5:
m_decimators.decimate32_cen(&it, buf, len);
break;
default:
break;
}