changeset 7514:e0e075680996 libavcodec

Simplify eval_refl(): s/b == 0/!b/
author vitor
date Wed, 06 Aug 2008 21:04:40 +0000
parents e19d0c9f50ce
children 1d5800cec7ad
files ra144.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ra144.c	Wed Aug 06 21:02:56 2008 +0000
+++ b/ra144.c	Wed Aug 06 21:04:40 2008 +0000
@@ -246,7 +246,7 @@
     for (c=8; c >= 0; c--) {
         b = 0x1000-((u * u) >> 12);
 
-        if (b == 0)
+        if (!b)
             b = -2;
 
         for (u=0; u<=c; u++)