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 /configure | |
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 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -45,6 +45,7 @@ case "$cpu" in esac gprof="no" grab="yes" +mp3lame="no" win32="no" extralibs="-lm" @@ -81,6 +82,7 @@ echo " --cpu=CPU force cpu to CPU [$cpu]" echo " --disable-mmx disable mmx usage" echo " --enable-gprof enable profiling with gprof [$gprof]" echo " --disable-grab disable audio/video grabbing code" +echo " --enable-mp3lame enable mp3 encoding via libmp3lame" echo " --enable-win32 enable win32 cross compile" echo " --enable-shared build shared libraries [default=no]" exit 1 @@ -101,6 +103,8 @@ for opt do ;; --disable-grab) grab="no" ;; + --enable-mp3lame) mp3lame="yes" + ;; --enable-win32) win32="yes" ;; --enable-shared=*) lshared=`echo $opt | cut -d '=' -f 2` @@ -151,6 +155,7 @@ echo "CPU $cpu" echo "MMX enabled $mmx" echo "gprof enabled $gprof" echo "grab enabled $grab" +echo "mp3lame enabled $mp3lame" echo "Creating config.mak and config.h" @@ -209,6 +214,11 @@ if [ "$grab" = "yes" ] ; then echo "CONFIG_GRAB=yes" >> config.mak fi +if [ "$mp3lame" = "yes" ] ; then + echo "#define CONFIG_MP3LAME 1" >> config.h + echo "CONFIG_MP3LAME=yes" >> config.mak +fi + if [ "$win32" = "yes" ] ; then echo "#define CONFIG_WIN32 1" >> config.h echo "CONFIG_WIN32=yes" >> config.mak |