]> git.sesse.net Git - ffmpeg/commitdiff
Remove one more set of useless parentheses from a return call.
authorDiego Biurrun <diego@biurrun.de>
Tue, 6 May 2008 09:20:50 +0000 (09:20 +0000)
committerDiego Biurrun <diego@biurrun.de>
Tue, 6 May 2008 09:20:50 +0000 (09:20 +0000)
Originally committed as revision 13070 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/vorbis_dec.c

index aff21675f992c6ee3816b5029493fc212bdfc20c..5cce320420c63535507d39a7d8abb4c9d878a2ad 100644 (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);
 }