mirror of https://git.ffmpeg.org/ffmpeg.git
Fix "iirfilter.c:55: warning: unused variable ‘size’"
Originally committed as revision 19397 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e187d87d7d
commit
47f49f98ca
|
@ -52,7 +52,7 @@ struct FFIIRFilterCoeffs* ff_iir_filter_init_coeffs(enum IIRFilterType filt_type
|
||||||
int order, float cutoff_ratio,
|
int order, float cutoff_ratio,
|
||||||
float stopband, float ripple)
|
float stopband, float ripple)
|
||||||
{
|
{
|
||||||
int i, j, size;
|
int i, j;
|
||||||
FFIIRFilterCoeffs *c;
|
FFIIRFilterCoeffs *c;
|
||||||
double wa;
|
double wa;
|
||||||
double p[MAXORDER + 1][2];
|
double p[MAXORDER + 1][2];
|
||||||
|
|
Loading…
Reference in New Issue