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

@@ -82,12 +82,12 @@ namespace dsp::channel {
}
inline int process(int count, const complex_t* in, complex_t* out) {
xlator.process(count, in, xlator.out.writeBuf);
xlator.process(count, in, out);
if (!filterNeeded) {
return resamp.process(count, xlator.out.writeBuf, out);
return resamp.process(count, out, out);
}
count = resamp.process(count, xlator.out.writeBuf, resamp.out.writeBuf);
filter.process(count, resamp.out.writeBuf, out);
count = resamp.process(count, out, out);
filter.process(count, out, out);
return count;
}