aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/filter.h
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2017-01-29 07:25:12 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2017-02-18 21:01:13 +0100
commit7e45f556cec493c3c77fcb6400d8ae211faf2220 (patch)
treecb5903509228c36e7dcd52ae0a049b380e81f401 /src/common/filter.h
parentbd7ccc5fa05587606757adbacb6e1bf12f12fd2c (diff)
Correcting all levels and move all remaining integer samples to sample_t
The leves are based on the standards of each mobile network. They are adjusted to the specified frequency deviation now.
Diffstat (limited to 'src/common/filter.h')
-rw-r--r--src/common/filter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/filter.h b/src/common/filter.h
index 42f051b..9f33fe2 100644
--- a/src/common/filter.h
+++ b/src/common/filter.h
@@ -9,6 +9,6 @@ typedef struct filter {
void filter_lowpass_init(filter_t *bq, double frequency, int samplerate, int iterations);
void filter_highpass_init(filter_t *bq, double frequency, int samplerate, int iterations);
-void filter_process(filter_t *bq, double *samples, int length);
+void filter_process(filter_t *bq, sample_t *samples, int length);
#endif /* _FILTER_H */