More table renaming

Originally committed as revision 13825 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Vitor Sessak
2008-06-19 20:31:34 +00:00
parent a2d10dd8d8
commit a632f44e81
2 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -351,7 +351,7 @@ static int ra144_decode_frame(AVCodecContext * avctx,
for (i=0; i<10; i++)
// "<< 1"? Doesn't this make one value out of two of the table useless?
lpc_refl[i] = decodetable[i][get_bits(&gb, sizes[i]) << 1];
lpc_refl[i] = lpc_refl_cb[i][get_bits(&gb, sizes[i]) << 1];
eval_coefs(lpc_refl, ractx->lpc_coef);
ractx->lpc_refl_rms = rms(lpc_refl);