changeset 7507:8f89a4d76a71 libavcodec

Cosmetical simplification in t_sqrt()
author vitor
date Wed, 06 Aug 2008 05:08:48 +0000
parents e94202a2e0b6
children f516e1101167
files ra144.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ra144.c	Wed Aug 06 05:06:10 2008 +0000
+++ b/ra144.c	Wed Aug 06 05:08:48 2008 +0000
@@ -71,7 +71,7 @@
     int s = 2;
     while (x > 0xfff) {
         s++;
-        x = x >> 2;
+        x >>= 2;
     }
 
     return ff_sqrt(x << 20) << s;