feat: all filter types

This commit is contained in:
2024-01-17 08:56:59 +07:00
parent 29ceabca74
commit 2cfc49bac3
15 changed files with 110 additions and 234 deletions

View File

@@ -4,7 +4,7 @@
class LowPassFilter : public Filter {
protected:
void CalculateCoefficients() override;
float GetSampleForFilterType() override;
public:
LowPassFilter();
@@ -13,3 +13,4 @@ class LowPassFilter : public Filter {
~LowPassFilter();
bool IsSameFilterType(FilterType type) override { return type == LowPass; };
};