comparison vorbis_dec.c @ 6751:1fc844ec6430 libavcodec

Remove one more set of useless parentheses from a return call.
author diego
date Tue, 06 May 2008 09:20:50 +0000
parents a4104482ceef
children e943e1409077
comparison
equal deleted inserted replaced
6750:c93570aeb3eb 6751:1fc844ec6430
167 167
168 static float vorbisfloat2float(uint_fast32_t val) { 168 static float vorbisfloat2float(uint_fast32_t val) {
169 double mant=val&0x1fffff; 169 double mant=val&0x1fffff;
170 long exp=(val&0x7fe00000L)>>21; 170 long exp=(val&0x7fe00000L)>>21;
171 if (val&0x80000000) mant=-mant; 171 if (val&0x80000000) mant=-mant;
172 return(ldexp(mant, exp-20-768)); 172 return ldexp(mant, exp - 20 - 768);
173 } 173 }
174 174
175 175
176 // Free all allocated memory ----------------------------------------- 176 // Free all allocated memory -----------------------------------------
177 177