[FFmpeg-cvslog] r13070 - trunk/libavcodec/vorbis_dec.c

diego subversion
Tue May 6 11:20:50 CEST 2008


Author: diego
Date: Tue May  6 11:20:50 2008
New Revision: 13070

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


Modified:
   trunk/libavcodec/vorbis_dec.c

Modified: trunk/libavcodec/vorbis_dec.c
==============================================================================
--- trunk/libavcodec/vorbis_dec.c	(original)
+++ trunk/libavcodec/vorbis_dec.c	Tue May  6 11:20:50 2008
@@ -169,7 +169,7 @@ static float vorbisfloat2float(uint_fast
     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);
 }
 
 




More information about the ffmpeg-cvslog mailing list