# HG changeset patch # User vitor # Date 1217999328 0 # Node ID 8f89a4d76a71d86524a6c6fdf93acc481744396b # Parent e94202a2e0b6bc9cc8ec93e17b638021a3711d44 Cosmetical simplification in t_sqrt() diff -r e94202a2e0b6 -r 8f89a4d76a71 ra144.c --- 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;