[FFmpeg-cvslog] avfilter/af_biquads: Change width_type to int as its accessed as int via AVOptions

Michael Niedermayer git at videolan.org
Mon Mar 2 04:29:10 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Feb  2 23:09:35 2015 +0100| [e8c1eb09c7fc5a3669fcb27f52de0cf2ace3931d] | committer: Michael Niedermayer

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 at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e8c1eb09c7fc5a3669fcb27f52de0cf2ace3931d
---

 libavfilter/af_biquads.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 



More information about the ffmpeg-cvslog mailing list