Commit 78043397 authored by Vitor Sessak's avatar Vitor Sessak

Use a matrix instead of a vector

Originally committed as revision 14062 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a429946b
......@@ -58,7 +58,7 @@ static void decode(Real288_internal *glob, int amp_coef, int cb_coef)
}
f = amptable[amp_coef];
table = codetable + cb_coef * 5;
table = codetable[cb_coef];
/* convert log and do rms */
for (sum=32, x=10; x--; sum -= glob->pr2[x] * glob->lhist[x]);
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment