diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-10-04 09:53:34 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-10-04 09:53:34 +0000 |
commit | 29d48296a756818e8d77d2e97c1f3ab0704e003d (patch) | |
tree | 9283e02a48f6f8c0516710fa8fd879bae75f6f61 /libavcodec/Makefile | |
parent | 39518b493f4780f1cd5d8e45aed728049a74d556 (diff) | |
download | ffmpeg-29d48296a756818e8d77d2e97c1f3ab0704e003d.tar.gz |
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
Originally committed as revision 2342 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 6da467dcac..eb1bf0fb58 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -72,6 +72,11 @@ EXTRALIBS += -lfaad endif endif +ifeq ($(CONFIG_FAAC),yes) +OBJS+= faac.o +EXTRALIBS += -lfaac +endif + ifeq ($(CONFIG_PP),yes) ifeq ($(SHARED_PP),yes) EXTRALIBS += -lpostproc |