diff --git a/libavcodec/resample2.c b/libavcodec/resample2.c
index ebda7e5a8ba1c82c782c5c739992d394a7e285e2..70d8a1d956c9c4cb3b16a31985009e85e2bf4791 100644
--- a/libavcodec/resample2.c
+++ b/libavcodec/resample2.c
@@ -71,9 +71,10 @@ static double bessel(double x){
     double t=1;
     int i;
 
+    x= x*x/4;
     for(i=1; i<50; i++){
-        t *= i;
-        v += pow(x*x/4, i)/(t*t);
+        t *= x/(i*i);
+        v += t;
     }
     return v;
 }