]> git.sesse.net Git - vlc/commitdiff
equalizer: Enforce type correctness for M_PI as well
authorRonald Wright <logiconcepts819@gmail.com>
Sat, 6 Apr 2013 20:26:17 +0000 (15:26 -0500)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 8 Apr 2013 10:29:29 +0000 (12:29 +0200)
It was my expectation that M_PI in the EqzCoeffs function is automatically cast
to a float during compile time, but my expectation turned out to be incorrect.
Specifically, I noticed in GCC's assembly output of equalizer.c that GCC was
doing the inverse by making the program convert all single-precision terms
(excluding 2.0f * M_PI) in the line containing M_PI to double-precision, and
then making it convert the double-precision result to single-precision before
the assignment to f_theta_1.  As a result, M_PI must be explicitly cast to a
float.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/audio_filter/equalizer.c

index 3402bb830d29f0e5fc8673897afeb9bca98224f8..651b4a11f41e12abe257b13a42688a445265c50d 100644 (file)
@@ -254,7 +254,7 @@ static void EqzCoeffs( int i_rate, float f_octave_percent,
 
         if( f_freq <= f_nyquist_freq )
         {
-            float f_theta_1 = ( 2.0f * M_PI * f_freq ) / f_rate;
+            float f_theta_1 = ( 2.0f * (float) M_PI * f_freq ) / f_rate;
             float f_theta_2 = f_theta_1 / f_octave_factor;
             float f_sin     = sinf( f_theta_2 );
             float f_sin_prd = sinf( f_theta_2 * f_octave_factor_1 )