1
0
Fork 0
forked from len0rd/rockbox

Further libfaad cleanup. Make libfaad compilable for floating point. Floating point cannot be used as reference though, as errorous noise is the result.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28071 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2010-09-14 06:03:39 +00:00
parent f24e130017
commit cba9d259b0
3 changed files with 42 additions and 86 deletions

View file

@ -95,11 +95,6 @@ extern struct codec_api* ci;
/* Use if target platform has address generators with autoincrement */
//#define PREFER_POINTERS
#ifdef _WIN32_WCE
#define FIXED_POINT
#endif
#define ERROR_RESILIENCE
@ -328,7 +323,7 @@ char *strchr(), *strrchr();
*y2 = MUL_F(x2, c1) - MUL_F(x1, c2);
}
/* rockbox: must be commented to build for non-FP
#if defined(_WIN32) && !defined(__MINGW32__)
#define HAS_LRINTF
static INLINE int lrintf(float f)
@ -355,7 +350,7 @@ char *strchr(), *strrchr();
return i;
}
#endif
*/
#ifdef __ICL /* only Intel C compiler has fmath ??? */