summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-25 16:53:55 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-25 16:53:55 +0000
commitf8b5f7c71d6764c44bc8ea958de545f98729844a (patch)
tree409cf5f5ca3add9b525635fc14720679052fe9b4
parentac1c27b21c1ec55fc5b33469c3535c448514d0eb (diff)
Rename var
Originally committed as revision 13393 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/ra144.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c
index dbc01cfe2b..84257db7e6 100644
--- a/libavcodec/ra144.c
+++ b/libavcodec/ra144.c
@@ -118,14 +118,14 @@ static int irms(const short *data, int factor)
}
/* 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++)