comparison ra144.c @ 1415:9a218b289ee0 libavcodec

removed unused variables
author bellard
date Sun, 24 Aug 2003 22:08:22 +0000
parents b4a72edb3a71
children bbb6e7667671
comparison
equal deleted inserted replaced
1414:5ee7bd7ee76d 1415:9a218b289ee0
183 183
184 /* multiply/add wavetable */ 184 /* multiply/add wavetable */
185 static void add_wav(Real144_internal *glob, int n, int f, int m1, int m2, int m3, short *s1, short *s2, short *s3, short *dest) 185 static void add_wav(Real144_internal *glob, int n, int f, int m1, int m2, int m3, short *s1, short *s2, short *s3, short *dest)
186 { 186 {
187 int a,b,c; 187 int a,b,c;
188 int x;
189 short *ptr,*ptr2; 188 short *ptr,*ptr2;
190 189
191 ptr=glob->wavtable1+n*9; 190 ptr=glob->wavtable1+n*9;
192 ptr2=glob->wavtable2+n*9; 191 ptr2=glob->wavtable2+n*9;
193 if (f!=0) { 192 if (f!=0) {
306 305
307 static unsigned int rms(int *data, int f) 306 static unsigned int rms(int *data, int f)
308 { 307 {
309 int *c; 308 int *c;
310 int x; 309 int x;
311 int d;
312 unsigned int res; 310 unsigned int res;
313 int b; 311 int b;
314 312
315 c=data; 313 c=data;
316 b=0; 314 b=0;