mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-16 04:15:05 +00:00
ra144: factor division out
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7200fecd9b
commit
127b70e423
@ -1566,8 +1566,9 @@ int ff_eval_refl(int *refl, const int16_t *coefs, AVCodecContext *avctx)
|
|||||||
if (!b)
|
if (!b)
|
||||||
b = -2;
|
b = -2;
|
||||||
|
|
||||||
|
b = 0x1000000 / b;
|
||||||
for (j=0; j <= i; j++)
|
for (j=0; j <= i; j++)
|
||||||
bp1[j] = ((bp2[j] - ((refl[i+1] * bp2[i-j]) >> 12)) * (0x1000000 / b)) >> 12;
|
bp1[j] = ((bp2[j] - ((refl[i+1] * bp2[i-j]) >> 12)) * b) >> 12;
|
||||||
|
|
||||||
if ((unsigned) bp1[i] + 0x1000 > 0x1fff)
|
if ((unsigned) bp1[i] + 0x1000 > 0x1fff)
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user