From 37fa6208071dc46befce7440b756cbaf945e63bc Mon Sep 17 00:00:00 2001 From: Dan Everton Date: Sun, 11 Feb 2007 00:48:50 +0000 Subject: * 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 --- apps/codecs/libspeex/rockbox.c | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) (limited to 'apps/codecs/libspeex/rockbox.c') diff --git a/apps/codecs/libspeex/rockbox.c b/apps/codecs/libspeex/rockbox.c index 231a6b8..ace2dfb 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; } + -- cgit v1.1