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

Originally committed as revision 13070 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-05-06 09:20:50 +00:00
parent ccd425e799
commit a5c0969a33

View File

@ -169,7 +169,7 @@ static float vorbisfloat2float(uint_fast32_t val) {
double mant=val&0x1fffff;
long exp=(val&0x7fe00000L)>>21;
if (val&0x80000000) mant=-mant;
return(ldexp(mant, exp-20-768));
return ldexp(mant, exp - 20 - 768);
}