diff resample2.c @ 4822:7ea9c6a179e8 libavcodec

Remove unused variable.
author diego
date Sun, 08 Apr 2007 13:02:25 +0000
parents 6768647cc0fd
children f99e40a7155b
line wrap: on
line diff
--- a/resample2.c	Sun Apr 08 12:05:02 2007 +0000
+++ b/resample2.c	Sun Apr 08 13:02:25 2007 +0000
@@ -95,7 +95,7 @@
  * @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;