Commit eb4f1123 authored by vitor's avatar vitor

Use a matrix instead of a vector

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14062 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dc55fe93
......@@ -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