mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-05-01 06:13:08 +08:00
Cosmetical simplification in t_sqrt()
Originally committed as revision 14638 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user