diff resample2.c @ 3347:82277c821113 libavcodec

Add const to (mostly) char* and make some functions static, which aren't used outside their declaring source file and which have no corresponding prototype. patch by Stefan Huehner stefan^^@^^huehner^^.^^org
author diego
date Sun, 18 Jun 2006 11:33:14 +0000
parents 0b546eab515d
children c8c591fe26f8
line wrap: on
line diff
--- a/resample2.c	Sat Jun 17 18:46:06 2006 +0000
+++ b/resample2.c	Sun Jun 18 11:33:14 2006 +0000
@@ -62,7 +62,7 @@
 /**
  * 0th order modified bessel function of the first kind.
  */
-double bessel(double x){
+static double bessel(double x){
     double v=1;
     double t=1;
     int i;