From 65245347fbb309c790de14c7f1c0b406578fa5a5 Mon Sep 17 00:00:00 2001 From: vitor Date: Thu, 19 Jun 2008 19:34:38 +0000 Subject: [PATCH] Rename var git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13821 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/ra144.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index c679a6dbe..6d4c95b39 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -137,7 +137,7 @@ static void add_wav(int n, int skip_first, int *m, const int16_t *s1, } -static void final(const int16_t *i1, const int16_t *i2, +static void final(const int16_t *lpc_coefs, const int16_t *adapt_coef, void *out, int *statbuf, int len) { int x, i; @@ -145,14 +145,14 @@ static void final(const int16_t *i1, const int16_t *i2, int16_t *ptr = work; memcpy(work, statbuf,20); - memcpy(work + 10, i2, len * 2); + memcpy(work + 10, adapt_coef, len * 2); for (i=0; i>= 12; -- 2.11.4.GIT