Commit aae1c247 authored by Michael Niedermayer's avatar Michael Niedermayer

ra288: avoid one multiply

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d5d74cf5
...@@ -96,14 +96,14 @@ static void decode(RA288Context *ractx, float gain, int cb_coef) ...@@ -96,14 +96,14 @@ static void decode(RA288Context *ractx, float gain, int cb_coef)
for (i=0; i < 5; i++) for (i=0; i < 5; i++)
buffer[i] = codetable[cb_coef][i] * sumsum; buffer[i] = codetable[cb_coef][i] * sumsum;
sum = ff_dot_productf(buffer, buffer, 5) * ((1<<24)/5.); sum = ff_dot_productf(buffer, buffer, 5);
sum = FFMAX(sum, 1); sum = FFMAX(sum, 5. / (1<<24));
/* shift and store */ /* shift and store */
memmove(gain_block, gain_block + 1, 9 * sizeof(*gain_block)); memmove(gain_block, gain_block + 1, 9 * sizeof(*gain_block));
gain_block[9] = 10 * log10(sum) - 32; gain_block[9] = 10 * log10(sum) + (10*log10(((1<<24)/5.)) - 32);
ff_celp_lp_synthesis_filterf(block, ractx->sp_lpc, buffer, 5, 36); ff_celp_lp_synthesis_filterf(block, ractx->sp_lpc, buffer, 5, 36);
} }
......
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