From 3890a13173bc3c1d5812a53c0d75cd6c2ea3c808 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Mon, 23 Jun 2008 20:06:36 +0000 Subject: [PATCH] Rename var Originally committed as revision 13916 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra144.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 43a84615dd..bf1266904e 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -136,10 +136,10 @@ static void add_wav(int n, int skip_first, int *m, const int16_t *s1, dest[i] = ((*(s1++))*v[0] + (*(s2++))*v[1] + (*(s3++))*v[2]) >> 12; } -static void lpc_filter(const int16_t *lpc_coefs, uint16_t *statbuf, int len) +static void lpc_filter(const int16_t *lpc_coefs, uint16_t *in, int len) { int x, i; - int16_t *ptr = statbuf; + int16_t *ptr = in; for (i=0; i 32767) { - memset(statbuf, 0, 100); + memset(in, 0, 100); return; }