1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Bumped to v3.14.0 and allow decimation by 64 on all input plugins (missing yet: BladeRF and RTLSDR)

This commit is contained in:
f4exb
2018-03-27 11:32:39 +02:00
parent 4fbb8f74c8
commit 4d324875b9
17 changed files with 51 additions and 35 deletions
@@ -116,6 +116,9 @@ void RTLSDRThread::callback(const quint8* buf, qint32 len)
break;
case 5:
m_decimators.decimate32_inf(&it, buf, len);
break;
case 6:
m_decimators.decimate64_inf(&it, buf, len);
break;
default:
break;
@@ -139,6 +142,9 @@ void RTLSDRThread::callback(const quint8* buf, qint32 len)
break;
case 5:
m_decimators.decimate32_sup(&it, buf, len);
break;
case 6:
m_decimators.decimate64_sup(&it, buf, len);
break;
default:
break;
@@ -162,6 +168,9 @@ void RTLSDRThread::callback(const quint8* buf, qint32 len)
break;
case 5:
m_decimators.decimate32_cen(&it, buf, len);
break;
case 6:
m_decimators.decimate64_cen(&it, buf, len);
break;
default:
break;