diff options
author | Juanjo <pulento@users.sourceforge.net> | 2002-03-10 14:51:20 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2002-03-10 14:51:20 +0000 |
commit | 5798368bafa1fc2fefa6817d02c4d41622ba08fd (patch) | |
tree | 91f2fcea829907e1d037e787ee06046ff1e3f2bb /libavcodec/Makefile | |
parent | a674139801e6bc7d8d905cd700f55592a4f5050a (diff) | |
download | ffmpeg-5798368bafa1fc2fefa6817d02c4d41622ba08fd.tar.gz |
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
- Changes on AVI and WAV muxers to support MP3.
Originally committed as revision 324 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 fe124a4a1c..00d10b76bb 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -16,6 +16,10 @@ OBJS+= ac3dec.o \ libac3/imdct.o libac3/parse.o endif +ifeq ($(CONFIG_MP3LAME),yes) +OBJS += mp3lameaudio.o +endif + ifeq ($(TARGET_GPROF),yes) CFLAGS+=-p LDFLAGS+=-p |