]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/resample2.c
Remove hackish support for the non-free fixed-point AMR-NB reference code.
[ffmpeg] / libavcodec / resample2.c
index 4209b9705fcf55cd4a939f1273fbeec24fbabf37..d5e24fdfcdc2a003bc68e9f61dec9b993c7a54a1 100644 (file)
@@ -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;