More cleanup

This commit is contained in:
AlexandreRouma
2022-06-26 23:36:31 +02:00
parent 3f6687659e
commit ff6754099f
20 changed files with 85 additions and 15 deletions

View File

@ -61,7 +61,7 @@ namespace dsp::loop {
base_type::tempStart();
}
inline int process(int count, complex_t* in, complex_t* out) {
virtual inline int process(int count, complex_t* in, complex_t* out) {
for (int i = 0; i < count; i++) {
out[i] = math::phasor(pcl.phase);
pcl.advance(math::normPhaseDiff(in[i].phase() - pcl.phase));