1
0
Fork 0
forked from len0rd/rockbox

* 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
This commit is contained in:
Dan Everton 2007-02-11 00:48:50 +00:00
parent 3cf50c0007
commit 37fa620807
3 changed files with 77 additions and 7 deletions

View file

@ -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;
}