From 960573502e02ca4643e7a939abb4b7696aa4816d Mon Sep 17 00:00:00 2001 From: Monty Date: Wed, 8 Jul 2009 06:30:11 +0000 Subject: [PATCH] Trac #1549; enable slower but higher precision floor 0 LSP code. Modern CPUs are fast enough to not even notice. svn path=/trunk/vorbis/; revision=16225 --- lib/lsp.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/lsp.c b/lib/lsp.c index 0a0c6ee..b063a46 100644 --- a/lib/lsp.c +++ b/lib/lsp.c @@ -51,9 +51,10 @@ work on a fully fixed point implementation for processors like the ARM family. */ -/* undefine both for the 'old' but more precise implementation */ -#define FLOAT_LOOKUP -#undef INT_LOOKUP +/* define either of these (preferably FLOAT_LOOKUP) to have faster + but less precise implementation. */ +#undef FLOAT_LOOKUP +#undef INT_LOOKUP #ifdef FLOAT_LOOKUP #include "lookup.c" /* catch this in the build system; we #include for -- 2.7.4