New features + waterfall code cleanup

This commit is contained in:
Ryzerth
2021-04-17 22:37:50 +02:00
parent d1e553f05a
commit d91934955b
18 changed files with 263 additions and 84 deletions

View File

@ -83,14 +83,14 @@ namespace dsp {
void updateWindow(dsp::filter_window::generic_window* window) {
std::lock_guard<std::mutex> lck(generic_block<PolyphaseResampler<T>>::ctrlMtx);
generic_block<PolyphaseResampler<T>>::tempStop();
//generic_block<PolyphaseResampler<T>>::tempStop();
_window = window;
volk_free(taps);
tapCount = window->getTapCount();
taps = (float*)volk_malloc(tapCount * sizeof(float), volk_get_alignment());
window->createTaps(taps, tapCount, _interp);
buildTapPhases();
generic_block<PolyphaseResampler<T>>::tempStart();
//generic_block<PolyphaseResampler<T>>::tempStart();
}
int calcOutSize(int in) {
@ -103,6 +103,8 @@ namespace dsp {
return -1;
}
ctrlMtx.lock();
int outCount = calcOutSize(count);
memcpy(&buffer[tapsPerPhase], _in->readBuf, count * sizeof(T));
@ -129,6 +131,8 @@ namespace dsp {
memmove(buffer, &buffer[count], tapsPerPhase * sizeof(T));
ctrlMtx.unlock();
return count;
}