aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-06-19 19:35:59 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-06-19 19:35:59 +0000
commitea4b696605ba9351c68886abe8fdaba925b2db95 (patch)
tree10c68a47f840c1f11d99c27a0b902bb8c375fb4e /libavcodec
parentbba35fda77a2ae5560d8f6bd29532b48938592fa (diff)
downloadffmpeg-ea4b696605ba9351c68886abe8fdaba925b2db95.tar.gz
Rename function
Originally committed as revision 13822 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/ra144.c4
1 files 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)