summaryrefslogtreecommitdiff
path: root/libavcodec/ra288.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-07-24 04:15:50 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-07-24 04:15:50 +0000
commita6755f8d53fc5284938fc1ecde999f16b42d5882 (patch)
tree19d67eeef45bca70ec854ebfd06f1c4b46b6c5e8 /libavcodec/ra288.c
parent5e65f5df0e0cd91eed74cce87c5d65b19e176595 (diff)
Rename and comment bandwidth broadening tables
(s/table1a/syn_bw_tab/, s/table2a/gain_bw_tab/). Originally committed as revision 14363 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ra288.c')
-rw-r--r--libavcodec/ra288.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c
index ce5c3aef94..bae3b445e1 100644
--- a/libavcodec/ra288.c
+++ b/libavcodec/ra288.c
@@ -196,7 +196,7 @@ static void update(Real288_internal *glob)
syn_window);
if (!eval_lpc_coeffs(temp1, glob->st1, 36))
- colmult(glob->pr1, glob->st1, table1a, 36);
+ colmult(glob->pr1, glob->st1, syn_bw_tab, 36);
memcpy(buffer2 , glob->history + 4, 4*sizeof(*buffer2));
memcpy(buffer2 + 4, glob->history , 4*sizeof(*buffer2));
@@ -205,7 +205,7 @@ static void update(Real288_internal *glob)
gain_window);
if (!eval_lpc_coeffs(temp2, glob->st2, 10))
- colmult(glob->pr2, glob->st2, table2a, 10);
+ colmult(glob->pr2, glob->st2, gain_bw_tab, 10);
}
/* Decode a block (celp) */