summaryrefslogtreecommitdiff
path: root/apps/codecs/libfaad/common.h
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-09-14 06:03:39 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-09-14 06:03:39 +0000
commitcba9d259b05a88302a78669cba0953ba0c98274d (patch)
treec0315cb6619437b2021d7210c365e2630d345f57 /apps/codecs/libfaad/common.h
parentf24e130017b1bac8b99134f597cfa5549273a0e9 (diff)
downloadrockbox-cba9d259b05a88302a78669cba0953ba0c98274d.zip
rockbox-cba9d259b05a88302a78669cba0953ba0c98274d.tar.gz
rockbox-cba9d259b05a88302a78669cba0953ba0c98274d.tar.bz2
rockbox-cba9d259b05a88302a78669cba0953ba0c98274d.tar.xz
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
Diffstat (limited to 'apps/codecs/libfaad/common.h')
-rw-r--r--apps/codecs/libfaad/common.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/apps/codecs/libfaad/common.h b/apps/codecs/libfaad/common.h
index 5343de3..e6cdcd8 100644
--- a/apps/codecs/libfaad/common.h
+++ b/apps/codecs/libfaad/common.h
@@ -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 ??? */