Commit 631eee6e authored by Michael Niedermayer's avatar Michael Niedermayer

g723.1: use MULL(a,b,15) for MULL2()

idea by vitor
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent cb58adaa
......@@ -324,7 +324,7 @@ static void inverse_quant(int16_t *cur_lsp, int16_t *prev_lsp,
* @param b 16 bit multiplier
*/
#define MULL2(a, b) \
((((a) >> 16) * (b) << 1) + (((a) & 0xffff) * (b) >> 15))
MULL(a,b,15)
/**
* Convert LSP frequencies to LPC coefficients.
......
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