Mercurial > libavcodec.hg
changeset 4822:7ea9c6a179e8 libavcodec
Remove unused variable.
author | diego |
---|---|
date | Sun, 08 Apr 2007 13:02:25 +0000 |
parents | 42eef6c711ac |
children | cff8c7ecac71 |
files | resample2.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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;