projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ccd425e
)
Remove one more set of useless parentheses from a return call.
author
Diego Biurrun
<diego@biurrun.de>
Tue, 6 May 2008 09:20:50 +0000
(09:20 +0000)
committer
Diego 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
patch
|
blob
|
history
diff --git
a/libavcodec/vorbis_dec.c
b/libavcodec/vorbis_dec.c
index aff21675f992c6ee3816b5029493fc212bdfc20c..5cce320420c63535507d39a7d8abb4c9d878a2ad 100644
(file)
--- 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
);
}