diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-22 23:39:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-22 23:39:11 +0000 |
commit | bb4c2140c2333d71aaea15aa7aa759f3505a6139 (patch) | |
tree | 41be0860e6eec7a5229cf8c3ba0f83c29babe463 /configure | |
parent | cefe0607dd751b58d08e7dca4a0c381e917f30d9 (diff) | |
download | ffmpeg-bb4c2140c2333d71aaea15aa7aa759f3505a6139.tar.gz |
libgsm warper by (Alban Bedel: albeu, free fr)
Originally committed as revision 4302 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -22,6 +22,7 @@ echo " --enable-theora enable theora support via libtheora [default=no echo " --enable-faad enable faad support via libfaad [default=no]" echo " --enable-faadbin build faad support with runtime linking [default=no]" echo " --enable-faac enable faac support via libfaac [default=no]" +echo " --enable-libgsm enable gsm support via libgsm [default=no]" echo " --enable-xvid enable xvid support via xvidcore [default=no]" echo " --enable-x264 enable H.264 encoding via x264 [default=no]" echo " --enable-mingw32 enable mingw32 native/cross windows compile" @@ -158,6 +159,7 @@ dv1394="yes" dc1394="no" network="yes" zlib="yes" +libgsm="no" mp3lame="no" libogg="no" vorbis="no" @@ -447,6 +449,8 @@ for opt do ;; --enable-shared-pp) shared_pp="yes" ;; + --enable-libgsm) libgsm="yes" + ;; --enable-mp3lame) mp3lame="yes" ;; --enable-libogg) libogg="yes" @@ -1123,6 +1127,7 @@ echo "AltiVec enabled $altivec" fi echo "gprof enabled $gprof" echo "zlib enabled $zlib" +echo "libgsm enabled $libgsm" echo "mp3lame enabled $mp3lame" echo "libogg enabled $libogg" echo "vorbis enabled $vorbis" @@ -1420,6 +1425,11 @@ if test "$zlib" = "yes" ; then echo "CONFIG_ZLIB=yes" >> config.mak fi +if test "$libgsm" = "yes" ; then + echo "#define CONFIG_LIBGSM 1" >> $TMPH + echo "CONFIG_LIBGSM=yes" >> config.mak +fi + if test "$mp3lame" = "yes" ; then echo "#define CONFIG_MP3LAME 1" >> $TMPH echo "CONFIG_MP3LAME=yes" >> config.mak |