diff options
author | Juanjo <pulento@users.sourceforge.net> | 2002-03-10 14:44:19 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2002-03-10 14:44:19 +0000 |
commit | a674139801e6bc7d8d905cd700f55592a4f5050a (patch) | |
tree | ddf8d27fc70c189d6b82a876814cc894777b8f5f /Makefile | |
parent | 1699d37681d44493c790c680e8f1b7d6b602a31b (diff) | |
download | ffmpeg-a674139801e6bc7d8d905cd700f55592a4f5050a.tar.gz |
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
- Changes on AVI and WAV muxers to support MP3 encoding.
Originally committed as revision 323 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,6 +24,9 @@ DEP_FFMPEG_LIB= else FFMPEG_LIB=libavcodec/libavcodec.a DEP_FFMPEG_LIB=libavcodec/libavcodec.a +ifeq ($(CONFIG_MP3LAME),yes) +EXTRALIBS+=-lmp3lame +endif endif all: lib $(PROG) |