changeset 10404:e234640098aa libavcodec

Partially revert r20233, exp2f is not available on some BSDs, DOS and AVR32.
author reimar
date Thu, 15 Oct 2009 17:10:07 +0000
parents dfe00158fca6
children c687042d9bde
files mpegaudiodec.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mpegaudiodec.c	Thu Oct 15 15:11:57 2009 +0000
+++ b/mpegaudiodec.c	Thu Oct 15 17:10:07 2009 +0000
@@ -411,7 +411,7 @@
             double value = i/4;
             double f, fm;
             int e, m;
-            f = value * cbrtf(value) * exp2f((i&3)*0.25);
+            f = value * cbrtf(value) * pow(2, (i&3)*0.25);
             fm = frexp(f, &e);
             m = (uint32_t)(fm*(1LL<<31) + 0.5);
             e+= FRAC_BITS - 31 + 5 - 100;
@@ -423,7 +423,7 @@
         for(i=0; i<512*16; i++){
             double value = i & 15;
             int exponent= (i>>4);
-            double f= value * cbrtf(value) * exp2f((exponent-400)*0.25 + FRAC_BITS + 5);
+            double f= value * cbrtf(value) * pow(2, (exponent-400)*0.25 + FRAC_BITS + 5);
             expval_table[exponent][i&15]= llrint(f);
             if((i&15)==1)
                 exp_table[exponent]= llrint(f);