summaryrefslogtreecommitdiff
path: root/libavfilter/af_biquads.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-02 23:09:35 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-02 04:08:26 +0100
commite8c1eb09c7fc5a3669fcb27f52de0cf2ace3931d (patch)
treedcf81bbadf31bf55b988a671e4401f4f76c4f1af /libavfilter/af_biquads.c
parentd545668e256e3dfc7b46290042d537659f329241 (diff)
avfilter/af_biquads: Change width_type to int as its accessed as int via AVOptions
This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/af_biquads.c')
-rw-r--r--libavfilter/af_biquads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_biquads.c b/libavfilter/af_biquads.c
index 10de28d8bc..91662c4f5a 100644
--- a/libavfilter/af_biquads.c
+++ b/libavfilter/af_biquads.c
@@ -98,7 +98,7 @@ typedef struct {
const AVClass *class;
enum FilterType filter_type;
- enum WidthType width_type;
+ int width_type;
int poles;
int csg;