diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-06 09:20:50 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-06 09:20:50 +0000 |
commit | a5c0969a33230b1c6c02f288ddc63e22acd1d2f9 (patch) | |
tree | 04ff5654adebf0804c8311c47304bd7f86f24994 /libavcodec/vorbis_dec.c | |
parent | ccd425e7993ef0e76da7bf10c566d33f7acc7c6d (diff) | |
download | ffmpeg-a5c0969a33230b1c6c02f288ddc63e22acd1d2f9.tar.gz |
Remove one more set of useless parentheses from a return call.
Originally committed as revision 13070 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_dec.c')
-rw-r--r-- | libavcodec/vorbis_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index aff21675f9..5cce320420 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -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); } |