comparison libfaad2/Makefile @ 13583:fbf889ed2426

Hint at FIXED_POINT for better (SBR) performance.
author diego
date Fri, 08 Oct 2004 00:39:37 +0000
parents 6d50ef45a058
children 667c78f0fc60
comparison
equal deleted inserted replaced
13582:a23dcc96744d 13583:fbf889ed2426
5 5
6 SRCS = bits.c cfft.c common.c decoder.c drc.c error.c filtbank.c hcr.c huffman.c ic_predict.c is.c lt_predict.c mdct.c mp4.c ms.c output.c pns.c ps_dec.c ps_syntax.c pulse.c rvlc.c sbr_dct.c sbr_dec.c sbr_e_nf.c sbr_fbt.c sbr_hfadj.c sbr_hfgen.c sbr_huff.c sbr_qmf.c sbr_syntax.c sbr_tf_grid.c specrec.c ssr.c ssr_fb.c ssr_ipqf.c syntax.c tns.c 6 SRCS = bits.c cfft.c common.c decoder.c drc.c error.c filtbank.c hcr.c huffman.c ic_predict.c is.c lt_predict.c mdct.c mp4.c ms.c output.c pns.c ps_dec.c ps_syntax.c pulse.c rvlc.c sbr_dct.c sbr_dec.c sbr_e_nf.c sbr_fbt.c sbr_hfadj.c sbr_hfgen.c sbr_huff.c sbr_qmf.c sbr_syntax.c sbr_tf_grid.c specrec.c ssr.c ssr_fb.c ssr_ipqf.c syntax.c tns.c
7 OBJS = $(SRCS:.c=.o) 7 OBJS = $(SRCS:.c=.o)
8 8
9 CFLAGS = -I. $(OPTFLAGS) 9 CFLAGS = -I. $(OPTFLAGS)
10
11 # Uncomment this to use the FIXED_POINT implementation of FAAD2.
12 # This should improve performance, especially for SBR files.
13 #CFLAGS = -I. $(OPTFLAGS) -DFIXED_POINT
10 14
11 .SUFFIXES: .c .o 15 .SUFFIXES: .c .o
12 16
13 # .PHONY: all clean 17 # .PHONY: all clean
14 18