Commit f7856fd2 authored by michael's avatar michael

simplify


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8890 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2fc23fbe
...@@ -190,14 +190,13 @@ static inline int ff_sqrt(int a) ...@@ -190,14 +190,13 @@ static inline int ff_sqrt(int a)
{ {
int ret=0; int ret=0;
int s; int s;
int ret_sq=0;
if(a<128) return ff_sqrt_tab[a]; if(a<128) return ff_sqrt_tab[a];
for(s=15; s>=0; s--){ for(s=15; s>=0; s--){
int b= ret_sq + (1<<(s*2)) + (ret<<s)*2; int b= (1<<(s*2)) + (ret<<s)*2;
if(b<=a){ if(b<=a){
ret_sq=b; a-=b;
ret+= 1<<s; ret+= 1<<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