From ea4b696605ba9351c68886abe8fdaba925b2db95 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Thu, 19 Jun 2008 19:35:59 +0000 Subject: [PATCH] Rename function Originally committed as revision 13822 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra144.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 6d4c95b397..83e40d5b52 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 *lpc_coefs, const int16_t *adapt_coef, +static void lpc_filter(const int16_t *lpc_coefs, const int16_t *adapt_coef, void *out, int *statbuf, int len) { int x, i; @@ -235,7 +235,7 @@ static void do_output_subblock(RA144Context *ractx, add_wav(gain, cba_idx, m, buffer_a, etable1[cb1_idx], etable2[cb2_idx], block); - final(lpc_coefs, block, output_buffer, ractx->buffer, BLOCKSIZE); + lpc_filter(lpc_coefs, block, output_buffer, ractx->buffer, BLOCKSIZE); } static void int_to_int16(int16_t *decsp, const int *inp)