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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user