Commit e03e22de authored by vitor's avatar vitor

Simplify eval_refl(): s/b == 0/!b/

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14651 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3489adc7
......@@ -246,7 +246,7 @@ static int eval_refl(int *refl, const int16_t *coefs, RA144Context *ractx)
for (c=8; c >= 0; c--) {
b = 0x1000-((u * u) >> 12);
if (b == 0)
if (!b)
b = -2;
for (u=0; u<=c; u++)
......
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