1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-18 13:48:37 -04:00

Add 128 and 256 decimation for AirspyHF

This commit is contained in:
Jon Beniston
2021-02-01 16:40:23 +00:00
parent 91f0794822
commit 43d71251bf
5 changed files with 874 additions and 7 deletions
@@ -111,6 +111,12 @@ void AirspyHFWorker::callbackIQ(const float* buf, qint32 len)
case 6:
m_decimatorsIQ.decimate64_cen(&it, buf, len);
break;
case 7:
m_decimatorsIQ.decimate128_cen(&it, buf, len);
break;
case 8:
m_decimatorsIQ.decimate256_cen(&it, buf, len);
break;
default:
break;
}
@@ -145,6 +151,12 @@ void AirspyHFWorker::callbackQI(const float* buf, qint32 len)
case 6:
m_decimatorsQI.decimate64_cen(&it, buf, len);
break;
case 7:
m_decimatorsQI.decimate128_cen(&it, buf, len);
break;
case 8:
m_decimatorsQI.decimate256_cen(&it, buf, len);
break;
default:
break;
}