mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-11-07 04:09:11 +01:00
attemt at a CI build with new DSP
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user