Commit b4d46e8c authored by Vitor Sessak's avatar Vitor Sessak

Cosmetical simplification in t_sqrt()

Originally committed as revision 14638 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 438abdaa
......@@ -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