comparison 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
comparison
equal deleted inserted replaced
3346:052765f11f1c 3347:82277c821113
60 }AVResampleContext; 60 }AVResampleContext;
61 61
62 /** 62 /**
63 * 0th order modified bessel function of the first kind. 63 * 0th order modified bessel function of the first kind.
64 */ 64 */
65 double bessel(double x){ 65 static double bessel(double x){
66 double v=1; 66 double v=1;
67 double t=1; 67 double t=1;
68 int i; 68 int i;
69 69
70 for(i=1; i<50; i++){ 70 for(i=1; i<50; i++){