From e8c1eb09c7fc5a3669fcb27f52de0cf2ace3931d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 2 Feb 2015 23:09:35 +0100 Subject: 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 --- libavfilter/af_biquads.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/af_biquads.c') diff --git a/libavfilter/af_biquads.c b/libavfilter/af_biquads.c index 10de28d..91662c4 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; -- cgit v1.1