This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Cosmetical simplification in t_sqrt()
Originally committed as revision 14638 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Vitor Sessak
17 years ago
parent
438abdaaeb
commit
b4d46e8c06
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/ra144.c
+ 1
- 1
libavcodec/ra144.c
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save