From a5c0969a33230b1c6c02f288ddc63e22acd1d2f9 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Tue, 6 May 2008 09:20:50 +0000 Subject: [PATCH] Remove one more set of useless parentheses from a return call. Originally committed as revision 13070 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vorbis_dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index aff21675f..5cce32042 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); } -- 2.11.0