summaryrefslogtreecommitdiffstats
path: root/libfaad2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libfaad2/Makefile')
-rw-r--r--libfaad2/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/libfaad2/Makefile b/libfaad2/Makefile
index ca911d054d..2e9e267c05 100644
--- a/libfaad2/Makefile
+++ b/libfaad2/Makefile
@@ -46,9 +46,11 @@ OBJS = $(SRCS:.c=.o)
CFLAGS = -I. $(OPTFLAGS) -D_GNU_SOURCE
-# Uncomment this to use the FIXED_POINT implementation of FAAD2.
-# This should improve performance, especially for SBR files.
-#CFLAGS = -I. $(OPTFLAGS) -DFIXED_POINT
+# The FIXED_POINT implementation of FAAD2 improves performance
+# on some platforms, especially for SBR files.
+ifeq ($(FAAD_FIXED),yes)
+CFLAGS += -DFIXED_POINT
+endif
.SUFFIXES: .c .o