Commit 4a0cddff authored by vitor's avatar vitor

Cosmetical simplification in t_sqrt()

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14638 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9ccffcd4
......@@ -71,7 +71,7 @@ static int t_sqrt(unsigned int x)
int s = 2;
while (x > 0xfff) {
s++;
x = x >> 2;
x >>= 2;
}
return ff_sqrt(x << 20) << s;
......
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