[FFmpeg-soc] [soc]: r3386 - aacenc/aacpsy.c
kostya
subversion at mplayerhq.hu
Sun Aug 17 10:38:44 CEST 2008
Author: kostya
Date: Sun Aug 17 10:38:44 2008
New Revision: 3386
Log:
Remove now unneeded parentheses
Modified:
aacenc/aacpsy.c
Modified: aacenc/aacpsy.c
==============================================================================
--- aacenc/aacpsy.c (original)
+++ aacenc/aacpsy.c Sun Aug 17 10:38:44 2008
@@ -537,7 +537,7 @@ static void calc_pe(Psy3gppBand *band, i
static inline int determine_scalefactor(Psy3gppBand *band)
{
//spec gives constant for lg() but we scaled it for log2()
- return (int)(2.66667 * (log2(6.75*band->thr/band->ffac)));
+ return (int)(2.66667 * log2(6.75*band->thr/band->ffac));
}
/**
More information about the FFmpeg-soc
mailing list