changeset 6880:c39a7f5f10cb libavcodec

Rename var
author vitor
date Sun, 25 May 2008 16:53:55 +0000
parents a63a7b23d4ba
children b744e833f0e2
files ra144.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ra144.c	Sun May 25 16:52:14 2008 +0000
+++ b/ra144.c	Sun May 25 16:53:55 2008 +0000
@@ -118,14 +118,14 @@
 }
 
 /* multiply/add wavetable */
-static void add_wav(int n, int f, int *m, const short *s1,
+static void add_wav(int n, int skip_first, int *m, const short *s1,
                     const int8_t *s2, const int8_t *s3, short *dest)
 {
     int i;
     int v[3];
 
     v[0] = 0;
-    for (i=!f; i<3; i++)
+    for (i=!skip_first; i<3; i++)
         v[i] = (wavtable1[n][i] * m[i]) >> (wavtable2[n][i] + 1);
 
     for (i=0; i < BLOCKSIZE; i++)