summaryrefslogtreecommitdiffstats
path: root/gst/filter/iir.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/filter/iir.h')
-rw-r--r--gst/filter/iir.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/gst/filter/iir.h b/gst/filter/iir.h
index 241cc1d2..1cea5663 100644
--- a/gst/filter/iir.h
+++ b/gst/filter/iir.h
@@ -19,7 +19,8 @@
#ifndef _V_IIR_H_
#define _V_IIR_H_
-typedef struct {
+typedef struct
+{
int stages;
double *coeff_A;
double *coeff_B;
@@ -29,9 +30,9 @@ typedef struct {
double gain;
} IIR_state;
-void IIR_init(IIR_state *s,int stages,double gain, double *A, double *B);
-void IIR_clear(IIR_state *s);
-double IIR_filter(IIR_state *s,double in);
-double IIR_filter_ChebBand(IIR_state *s,double in);
+void IIR_init (IIR_state * s, int stages, double gain, double *A, double *B);
+void IIR_clear (IIR_state * s);
+double IIR_filter (IIR_state * s, double in);
+double IIR_filter_ChebBand (IIR_state * s, double in);
#endif