attemt at a CI build with new DSP

This commit is contained in:
AlexandreRouma
2022-06-17 17:34:23 +02:00
parent d1318d3a0f
commit 36adc102ee
38 changed files with 259 additions and 92 deletions

View File

@ -19,7 +19,7 @@ namespace dsp::math {
void init(stream<T>* in, int delay) {
_delay = delay;
buffer = buffer::alloc<float>(STREAM_BUFFER_SIZE + 64000);
buffer = buffer::alloc<T>(STREAM_BUFFER_SIZE + 64000);
bufStart = &buffer[_delay];
buffer::clear(buffer, _delay);