diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-02 23:09:35 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-02 04:08:26 +0100 |
commit | e8c1eb09c7fc5a3669fcb27f52de0cf2ace3931d (patch) | |
tree | dcf81bbadf31bf55b988a671e4401f4f76c4f1af | |
parent | d545668e256e3dfc7b46290042d537659f329241 (diff) | |
download | ffmpeg-e8c1eb09c7fc5a3669fcb27f52de0cf2ace3931d.tar.gz |
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>
-rw-r--r-- | libavfilter/af_biquads.c | 2 |
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; |