Rename functions and structure of biquad lowpass filter

This commit is contained in:
Andreas Eversberg
2017-01-05 15:53:55 +01:00
parent d447be5e26
commit 713b1ab118
6 changed files with 15 additions and 15 deletions

View File

@@ -3,11 +3,11 @@
typedef struct samplerate {
double factor;
struct {
biquad_low_pass_t bq;
filter_lowpass_t lp;
double in_index;
} down;
struct {
biquad_low_pass_t bq;
filter_lowpass_t lp;
double in_index;
} up;
} samplerate_t;