diff options
| author | Dan Everton <dan@iocaine.org> | 2007-02-09 23:08:12 +0000 |
|---|---|---|
| committer | Dan Everton <dan@iocaine.org> | 2007-02-09 23:08:12 +0000 |
| commit | 97623c5e97aa46b9421ef074ee7d3a39b8c5165e (patch) | |
| tree | c4420e194f73ffd64df44617d3ba4d9a4907d7df /apps/codecs | |
| parent | 05985069e66e82e9c17b53b3a32add3412f729f7 (diff) | |
| download | rockbox-97623c5e97aa46b9421ef074ee7d3a39b8c5165e.zip rockbox-97623c5e97aa46b9421ef074ee7d3a39b8c5165e.tar.gz rockbox-97623c5e97aa46b9421ef074ee7d3a39b8c5165e.tar.bz2 rockbox-97623c5e97aa46b9421ef074ee7d3a39b8c5165e.tar.xz | |
Fix warnings in simulator builds including libspeex
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12248 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/libspeex/math_approx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libspeex/math_approx.c b/apps/codecs/libspeex/math_approx.c index 7a20f90..54a3412 100644 --- a/apps/codecs/libspeex/math_approx.c +++ b/apps/codecs/libspeex/math_approx.c @@ -417,14 +417,14 @@ float spx_exp(float xf){ return exp_table[(int)((xf+4.0)*4.0)]; } else if (-4<xf&&4>xf){ #ifdef SIMULATOR - printf("NtbLexp:%f,%f,%f:%d,%d:%d\n",xf,flt,xf-flt,-4<xf,4>xf,abs(xf-flt)); +/* printf("NtbLexp:%f,%f,%f:%d,%d:%d\n",xf,flt,xf-flt,-4<xf,4>xf,abs(xf-flt)); */ #endif return exp_table[(int)((xf+4.0)*4.0)]; } #ifdef SIMULATOR - printf("NTBLexp:%f,%f,%f:%d,%d:%d\n",xf,flt,xf-flt,-4<xf,4>xf,abs(xf-flt)); +/* printf("NTBLexp:%f,%f,%f:%d,%d:%d\n",xf,flt,xf-flt,-4<xf,4>xf,abs(xf-flt)); */ #endif return spx_expB(xf); //return exp(xf); |