mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-11-15 16:52:55 +00:00
Move IIR code into .cpp file.
A few hundred more text section bytes saved.
This commit is contained in:
@@ -42,36 +42,15 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
void execute(buffer_s16_t buffer_in, buffer_s16_t buffer_out) {
|
||||
// TODO: Assert that buffer_out.count == buffer_in.count.
|
||||
for(size_t i=0; i<buffer_out.count; i++) {
|
||||
const int32_t output_sample = execute_sample(buffer_in.p[i]);
|
||||
const int32_t output_sample_saturated = __SSAT(output_sample, 16);
|
||||
buffer_out.p[i] = output_sample_saturated;
|
||||
}
|
||||
}
|
||||
|
||||
void execute_in_place(buffer_s16_t buffer) {
|
||||
execute(buffer, buffer);
|
||||
}
|
||||
void execute(buffer_s16_t buffer_in, buffer_s16_t buffer_out);
|
||||
void execute_in_place(buffer_s16_t buffer);
|
||||
|
||||
private:
|
||||
const iir_biquad_config_t config;
|
||||
std::array<float, 3> x { { 0.0f, 0.0f, 0.0f } };
|
||||
std::array<float, 3> y { { 0.0f, 0.0f, 0.0f } };
|
||||
|
||||
float execute_sample(const float in) {
|
||||
x[0] = x[1];
|
||||
x[1] = x[2];
|
||||
x[2] = in;
|
||||
|
||||
y[0] = y[1];
|
||||
y[1] = y[2];
|
||||
y[2] = config.b[0] * x[2] + config.b[1] * x[1] + config.b[2] * x[0]
|
||||
- config.a[1] * y[1] - config.a[2] * y[0];
|
||||
|
||||
return y[2];
|
||||
}
|
||||
float execute_sample(const float in);
|
||||
};
|
||||
|
||||
#endif/*__DSP_IIR_H__*/
|
||||
|
||||
Reference in New Issue
Block a user