view libfaad2/Makefile @ 21932:c11cbff65f18

r21727: Must refer to option name instead of internal variable r21758: Subtitle formats are listed in subreader.h, not libmpdemux/demuxer.h. r21848: clarify a few things about the interaction between *cmp and mbd options r21865: Audio track switching works with DVDs as well. r21882: sync to x264 r607 (update description of threads)
author kraymer
date Wed, 17 Jan 2007 14:04:30 +0000
parents 92b122592776
children 8bcff5c7e387
line wrap: on
line source


LIBNAME = libfaad2.a

include ../config.mak

SRCS    = bits.c \
          cfft.c \
          common.c \
          decoder.c \
          drc.c \
          drm_dec.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 \

CFLAGS  = -D_GNU_SOURCE

# The FIXED_POINT implementation of FAAD2 improves performance
# on some platforms, especially for SBR files.
ifeq ($(FAAD_FIXED),yes)
CFLAGS  += -DFIXED_POINT
endif

include ../mpcommon.mak