g723.1: deobfuscate an expression
(x << 2) - x is just an optimisation of 3 * x the compiler is perfectly capable of doing on its own. Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
@@ -974,8 +974,7 @@ static void formant_postfilter(G723_1_Context *p, int16_t *lpc, int16_t *buf)
|
|||||||
if (temp) {
|
if (temp) {
|
||||||
temp = (auto_corr[0] >> 2) / temp;
|
temp = (auto_corr[0] >> 2) / temp;
|
||||||
}
|
}
|
||||||
p->reflection_coef = ((p->reflection_coef << 2) - p->reflection_coef +
|
p->reflection_coef = (3 * p->reflection_coef + temp + 2) >> 2;
|
||||||
temp + 2) >> 2;
|
|
||||||
temp = (p->reflection_coef * 0xffffc >> 3) & 0xfffc;
|
temp = (p->reflection_coef * 0xffffc >> 3) & 0xfffc;
|
||||||
|
|
||||||
/* Compensation filter */
|
/* Compensation filter */
|
||||||
|
Reference in New Issue
Block a user