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

Support for Airspy: allow decimation by 64

This commit is contained in:
f4exb
2015-09-11 08:43:59 +02:00
parent 6e24ed6c28
commit 0b7a8c8cdb
4 changed files with 160 additions and 8 deletions
@@ -137,6 +137,9 @@ void AirspyThread::callback(const qint16* buf, qint32 len)
case 5:
m_decimators.decimate32_inf(&it, buf, len);
break;
case 6:
m_decimators.decimate64_inf(&it, buf, len);
break;
default:
break;
}
@@ -160,6 +163,9 @@ void AirspyThread::callback(const qint16* buf, qint32 len)
case 5:
m_decimators.decimate32_sup(&it, buf, len);
break;
case 6:
m_decimators.decimate64_sup(&it, buf, len);
break;
default:
break;
}
@@ -183,6 +189,9 @@ void AirspyThread::callback(const qint16* buf, qint32 len)
case 5:
m_decimators.decimate32_cen(&it, buf, len);
break;
case 6:
m_decimators.decimate64_cen(&it, buf, len);
break;
default:
break;
}