diff options
author | Dan Everton <dan@iocaine.org> | 2007-02-11 00:48:50 +0000 |
---|---|---|
committer | Dan Everton <dan@iocaine.org> | 2007-02-11 00:48:50 +0000 |
commit | 37fa6208071dc46befce7440b756cbaf945e63bc (patch) | |
tree | d73cb4ef2863a3f7e7abfcbed61003145f916a72 /apps/codecs/libspeex/rockbox.c | |
parent | 3cf50c00079d277c289c7f6b6166adc796709b5e (diff) |
* Document the revision of Speex imported in to Rockbox along with how the import was done.
* Add the Speex license document.
* Whitespace fixes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12266 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex/rockbox.c')
-rw-r--r-- | apps/codecs/libspeex/rockbox.c | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/apps/codecs/libspeex/rockbox.c b/apps/codecs/libspeex/rockbox.c index 231a6b8f18..ace2dfb63f 100644 --- a/apps/codecs/libspeex/rockbox.c +++ b/apps/codecs/libspeex/rockbox.c @@ -93,29 +93,37 @@ float floor(float x) { //Placeholders (not fixed point, only used when encoding): float pow(float a, float b) { - return 0; + DEBUGF("pow(%f, %f)\n", a, b); + return 0; } float log(float l) { - return 0; + DEBUGF("log(%f)\n", l); + return 0; } float fabs(float a) { - return 0; + DEBUGF("fabs(%f)\n", a); + return 0; } float sin(float a) { - return 0; + DEBUGF("sin(%f)\n", a); + return 0; } float cos(float a) { - return 0; + DEBUGF("cos(%f)\n", a); + return 0; } float sqrt(float a) { - return 0; + DEBUGF("sqrt(%f)\n", a); + return 0; } float exp(float a) { - return 0; + DEBUGF("exp(%f)\n", a); + return 0; } + |