diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-05-12 10:55:19 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-05-12 10:55:19 +0000 |
commit | 280bd7b7de2e05b695228fbeaa795fc8e4922b6c (patch) | |
tree | e58eae91dba7b087a9b86c03b4dee939d2bc54f4 /libavcodec/Makefile | |
parent | 74c0ac127407847525a7fe38818de0dd772a20b9 (diff) | |
download | ffmpeg-280bd7b7de2e05b695228fbeaa795fc8e4922b6c.tar.gz |
* 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
Originally committed as revision 1857 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 07a1486499..b7ba13095d 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -36,6 +36,10 @@ OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ endif endif +ifeq ($(CONFIG_FAAD),yes) +OBJS+= faad.o +endif + ifeq ($(CONFIG_PP),yes) ifeq ($(SHARED_PP),yes) EXTRALIBS += -lpostproc |