From 4bbdac6e142cb70b4efbb7304c50884d085c9761 Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 17 Oct 2006 16:01:25 +0000 Subject: Add configure switch to enable fixed-pointed mode of internal libfaad2. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20287 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libfaad2/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libfaad2') 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 -- cgit v1.2.3