Commit 04792862 authored by michael's avatar michael

simplify


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12755 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ba4175bc
......@@ -96,10 +96,10 @@ AVInteger av_shr_i(AVInteger a, int s){
int i;
for(i=0; i<AV_INTEGER_SIZE; i++){
int index= i + (s>>4);
unsigned int index= i + (s>>4);
unsigned int v=0;
if(index+1<AV_INTEGER_SIZE && index+1>=0) v = a.v[index+1]<<16;
if(index <AV_INTEGER_SIZE && index >=0) v+= a.v[index ];
if(index+1<AV_INTEGER_SIZE) v = a.v[index+1]<<16;
if(index <AV_INTEGER_SIZE) v+= a.v[index ];
out.v[i]= v >> (s&15);
}
return out;
......
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