1
0
Fork 0

Add a todo for SIMD Diopser coefficent generation

This commit is contained in:
Robbert van der Helm 2022-03-02 17:04:01 +01:00
parent 75b1b13599
commit c7d7a790c2

View file

@ -369,6 +369,7 @@ impl Diopser {
(frequency * 2.0f32.powf(spread_octaves)) - frequency
};
// TODO: This wrecks the DSP load at high smoothing accuracy, perhaps also use SIMD here
const MIN_FREQUENCY: f32 = 5.0;
let max_frequency = self.sample_rate / 2.05;
for filter_idx in 0..self.params.filter_stages.value as usize {