Mercurial > libavcodec.hg
comparison Makefile @ 1245:cd88870c4560 libavcodec
* support for AAC audio streams via libfaad
* could be complied with runtime linking of libfaad (CONFIG_FAADBIN)
* missing/untested support for raw AAC streams (maybe there will be
just one entry for aac)
* missing configure check for libfaad/config option
author | kabi |
---|---|
date | Mon, 12 May 2003 10:55:19 +0000 |
parents | 3fa9a3de913f |
children | 26827e6ae6dd |
comparison
equal
deleted
inserted
replaced
1244:a02df1ba6c7f | 1245:cd88870c4560 |
---|---|
32 # using builtin liba52 or runtime linked liba52.so.0 | 32 # using builtin liba52 or runtime linked liba52.so.0 |
33 ifneq ($(CONFIG_A52BIN),yes) | 33 ifneq ($(CONFIG_A52BIN),yes) |
34 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ | 34 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
35 liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o | 35 liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o |
36 endif | 36 endif |
37 endif | |
38 | |
39 ifeq ($(CONFIG_FAAD),yes) | |
40 OBJS+= faad.o | |
37 endif | 41 endif |
38 | 42 |
39 ifeq ($(CONFIG_PP),yes) | 43 ifeq ($(CONFIG_PP),yes) |
40 ifeq ($(SHARED_PP),yes) | 44 ifeq ($(SHARED_PP),yes) |
41 EXTRALIBS += -lpostproc | 45 EXTRALIBS += -lpostproc |