Commit c4ff1ca3 authored by diego's avatar diego

Remove one more set of useless parentheses from a return call.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13070 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f857f4b5
...@@ -169,7 +169,7 @@ static float vorbisfloat2float(uint_fast32_t val) { ...@@ -169,7 +169,7 @@ static float vorbisfloat2float(uint_fast32_t val) {
double mant=val&0x1fffff; double mant=val&0x1fffff;
long exp=(val&0x7fe00000L)>>21; long exp=(val&0x7fe00000L)>>21;
if (val&0x80000000) mant=-mant; if (val&0x80000000) mant=-mant;
return(ldexp(mant, exp-20-768)); return ldexp(mant, exp - 20 - 768);
} }
......
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