# HG changeset patch # User diego # Date 1176037345 0 # Node ID 7ea9c6a179e8c583638abd973c06b8a8227198bc # Parent 42eef6c711acad57c45b6da1438f48cbc851f92b Remove unused variable. diff -r 42eef6c711ac -r 7ea9c6a179e8 resample2.c --- 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;