This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Fix "iirfilter.c:55: warning: unused variable ‘size’"
Originally committed as revision 19397 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Alex Converse
16 years ago
parent
e187d87d7d
commit
47f49f98ca
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/iirfilter.c
+ 1
- 1
libavcodec/iirfilter.c
View File
@@ -52,7 +52,7 @@ struct FFIIRFilterCoeffs* ff_iir_filter_init_coeffs(enum IIRFilterType filt_type
int order, float cutoff_ratio,
float stopband, float ripple)
{
int i, j
, size
;
int i, j;
FFIIRFilterCoeffs *c;
double wa;
double p[MAXORDER + 1][2];
Write
Preview
Loading…
Cancel
Save