summaryrefslogtreecommitdiff
path: root/apps/codecs/liba52/a52_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/liba52/a52_internal.h')
-rw-r--r--apps/codecs/liba52/a52_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/liba52/a52_internal.h b/apps/codecs/liba52/a52_internal.h
index 4de21d9..14e5795 100644
--- a/apps/codecs/liba52/a52_internal.h
+++ b/apps/codecs/liba52/a52_internal.h
@@ -141,7 +141,7 @@ typedef int16_t quantizer_t;
#if 0
#define MUL(a,b) ((int)(((int64_t)(a) * (b) + (1 << 29)) >> 30))
#define MUL_L(a,b) ((int)(((int64_t)(a) * (b) + (1 << 25)) >> 26))
-#elif CONFIG_CPU==MCF5249 && !defined(SIMULATOR)
+#elif defined(CPU_COLDFIRE) && !defined(SIMULATOR)
/* loses 1 bit of accuracy */
#define MUL(a, b) \
({ \