Commit 477fb15e authored by jbr's avatar jbr

ac3dec: unroll inner loop in exponent decoding. 46% faster decode_exponents().

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16018 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4739e37a
......@@ -390,12 +390,15 @@ static int decode_exponents(GetBitContext *gbc, int exp_strategy, int ngrps,
/* convert to absolute exps and expand groups */
prevexp = absexp;
for(i=0; i<ngrps*3; i++) {
for(i=0,j=0; i<ngrps*3; i++) {
prevexp += dexp[i] - 2;
if (prevexp < 0 || prevexp > 24)
return -1;
for(j=0; j<group_size; j++) {
dexps[(i*group_size)+j] = prevexp;
switch (group_size) {
case 4: dexps[j++] = prevexp;
dexps[j++] = prevexp;
case 2: dexps[j++] = prevexp;
case 1: dexps[j++] = prevexp;
}
}
return 0;
......
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