# HG changeset patch # User vitor # Date 1213907308 0 # Node ID 1685bdab6d887356604a10db8a4c0da59bc962a6 # Parent 520e91c4b16830f4a14066803f55e1d38916251e Rename table diff -r 520e91c4b168 -r 1685bdab6d88 ra144.c --- a/ra144.c Thu Jun 19 19:37:51 2008 +0000 +++ b/ra144.c Thu Jun 19 20:28:28 2008 +0000 @@ -356,7 +356,7 @@ eval_coefs(lpc_refl, ractx->lpc_coef); ractx->lpc_refl_rms = rms(lpc_refl); - energy = decodeval[get_bits(&gb, 5) << 1]; // Useless table entries? + energy = energy_tab[get_bits(&gb, 5) << 1]; // Useless table entries? refl_rms[0] = interp(ractx, block_coefs[0], 0, 0, ractx->old_energy); refl_rms[1] = interp(ractx, block_coefs[1], 1, energy > ractx->old_energy, diff -r 520e91c4b168 -r 1685bdab6d88 ra144.h --- a/ra144.h Thu Jun 19 19:37:51 2008 +0000 +++ b/ra144.h Thu Jun 19 20:28:28 2008 +0000 @@ -1869,7 +1869,7 @@ 192855, 211270, 211641, 210734, 221325, 222075, 214093, 194793 }; -static const int16_t decodeval[63]={ +static const int16_t energy_tab[63]={ 0, 6, 16, 18, 20, 23, 25, 29, 32, 36, 41, 46, 51, 57, 65, 73, 81, 91, 103, 115, 129, 145, 163, 183,