Browse code

Fix "iirfilter.c:55: warning: unused variable ‘size’"

Originally committed as revision 19397 to svn://svn.ffmpeg.org/ffmpeg/trunk

Alex Converse authored on 2009/07/11 05:51:22
Showing 1 changed files
... ...
@@ -52,7 +52,7 @@ struct FFIIRFilterCoeffs* ff_iir_filter_init_coeffs(enum IIRFilterType filt_type
52 52
                                                     int order, float cutoff_ratio,
53 53
                                                     float stopband, float ripple)
54 54
 {
55
-    int i, j, size;
55
+    int i, j;
56 56
     FFIIRFilterCoeffs *c;
57 57
     double wa;
58 58
     double p[MAXORDER + 1][2];