mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-06 10:47:34 +01:00
Performance improvements
This commit is contained in:
parent
4a5a29a59a
commit
ace0f4a316
@ -124,24 +124,19 @@ namespace dsp {
|
||||
while (inOffset < count) {
|
||||
volk_32f_x2_dot_prod_32f(&out.writeBuf[outIndex++], &buffer[inOffset], tapPhases[_counter], tapsPerPhase);
|
||||
_counter += _decim;
|
||||
while (_counter >= _interp) {
|
||||
_counter -= _interp;
|
||||
inOffset++;
|
||||
}
|
||||
inOffset += (_counter / _interp);
|
||||
_counter = (_counter % _interp);
|
||||
}
|
||||
|
||||
}
|
||||
if constexpr (std::is_same_v<T, complex_t> || std::is_same_v<T, stereo_t>) {
|
||||
while (inOffset < count) {
|
||||
volk_32fc_32f_dot_prod_32fc((lv_32fc_t*)&out.writeBuf[outIndex++], (lv_32fc_t*)&buffer[inOffset], tapPhases[_counter], tapsPerPhase);
|
||||
_counter += _decim;
|
||||
while (_counter >= _interp) {
|
||||
_counter -= _interp;
|
||||
inOffset++;
|
||||
}
|
||||
inOffset += (_counter / _interp);
|
||||
_counter = (_counter % _interp);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (!out.swap(outIndex)) { return -1; }
|
||||
|
||||
offset = inOffset - count;
|
||||
|
Loading…
Reference in New Issue
Block a user