diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-04-08 13:02:25 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-08 13:02:25 +0000 |
commit | 0339fab8fc25d313c571d0959fba6657b7b7335a (patch) | |
tree | 1183c70e85122b2d1acb9385c46c41ce3ca311c0 /libavcodec/resample2.c | |
parent | 90f2a1a03ce5759bc863f5adefe926f322fcc392 (diff) | |
download | ffmpeg-0339fab8fc25d313c571d0959fba6657b7b7335a.tar.gz |
Remove unused variable.
Originally committed as revision 8681 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/resample2.c')
-rw-r--r-- | libavcodec/resample2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/resample2.c b/libavcodec/resample2.c index 4209b9705f..d5e24fdfcd 100644 --- a/libavcodec/resample2.c +++ b/libavcodec/resample2.c @@ -95,7 +95,7 @@ static double bessel(double x){ * @param type 0->cubic, 1->blackman nuttall windowed sinc, 2..16->kaiser windowed sinc beta=2..16 */ void av_build_filter(FELEM *filter, double factor, int tap_count, int phase_count, int scale, int type){ - int ph, i, v; + int ph, i; double x, y, w, tab[tap_count]; const int center= (tap_count-1)/2; |