[Mplayer-cvslog] CVS: main configure,1.912,1.913
Nico Sabbi CVS
syncmail at mplayerhq.hu
Tue Sep 21 21:48:34 CEST 2004
- Previous message: [Mplayer-cvslog] CVS: main Makefile,1.301,1.302
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs ad_acm.c, 1.12, 1.13 ad_alaw.c, 1.3, 1.4 ad_dk3adpcm.c, 1.6, 1.7 ad_dmo.c, 1.2, 1.3 ad_dshow.c, 1.5, 1.6 ad_faad.c, 1.14, 1.15 ad_ffmpeg.c, 1.15, 1.16 ad_imaadpcm.c, 1.7, 1.8 ad_liba52.c, 1.13, 1.14 ad_libmad.c, 1.3, 1.4 ad_mp3lib.c, 1.6, 1.7 ad_msadpcm.c, 1.10, 1.11 ad_msgsm.c, 1.4, 1.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
CVS change done by Nico Sabbi CVS
Update of /cvsroot/mplayer/main
In directory mail:/var2/tmp/cvs-serv3181
Modified Files:
configure
Log Message:
encoding to mp2 with libtoolame
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.912
retrieving revision 1.913
diff -u -r1.912 -r1.913
--- configure 20 Sep 2004 08:48:53 -0000 1.912
+++ configure 21 Sep 2004 19:48:31 -0000 1.913
@@ -212,6 +212,7 @@
--disable-internal-faad disable internal FAAD2 (AAC) support [autodetect]
--disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
--disable-mad disable libmad (MPEG audio) support [autodetect]
+ --disable-toolame disable Toolame (MPEG layer 2 audio) support in mencoder [autodetect]
--enable-xmms build with XMMS inputplugin support [disabled]
--disable-mp3lib disable builtin mp3lib [enabled]
--disable-liba52 disable builtin liba52 [enabled]
@@ -326,6 +327,7 @@
--with-dtslibdir=DIR libdts library in DIR (*)
--with-dtsincdir=DIR libdts header in DIR (*)
--with-livelibdir=DIR LIVE.COM Streaming Media libraries in DIR
+ --with-toolamedir=DIR path to Toolame library and include file
--with-xmmsplugindir=DIR XMMS plugins in DIR
--with-xmmslibdir=DIR libxmms.so.1 in DIR
--with-bio2jack=DIR libbio2jack.a in DIR
@@ -1258,6 +1260,7 @@
_jack=auto
_liblzo=auto
_mad=auto
+_toolame=auto
_vorbis=auto
_theora=auto
_mp3lib=yes
@@ -1429,6 +1432,7 @@
--disable-jack) _jack=no ;;
--enable-mad) _mad=yes ;;
--disable-mad) _mad=no ;;
+ --disable-toolame) _toolame=no ;;
--enable-liblzo) _liblzo=yes ;;
--disable-liblzo) _liblzo=no ;;
--enable-vorbis) _vorbis=yes ;;
@@ -1625,6 +1629,9 @@
--with-livelibdir=*)
_livelibdir=`echo $ac_option | cut -d '=' -f 2`
;;
+ --with-toolamedir=*)
+ _toolamedir=`echo $ac_option | cut -d '=' -f 2`
+ ;;
--with-mlibdir=*)
_mlibdir=`echo $ac_option | cut -d '=' -f 2`
_mlib=yes
@@ -4844,6 +4851,33 @@
fi
echores "$_mad"
+echocheck "Toolame"
+if test "$_toolame" = auto ; then
+ cat > $TMPC <<EOF
+#include <toolame.h>
+int main(void) { toolame_init(); return 0; }
+EOF
+ _toolame=no
+ _toolame_extraflags=""
+ _toolame_lib="-ltoolame"
+ if test -n "$_toolamedir"; then
+ _toolame_extraflags="-I$_toolamedir -L$_toolamedir"
+ fi
+ cc_check $_toolame_extraflags $_toolame_lib -lm && _toolame=yes
+fi
+if test "$_toolame" = yes ; then
+ _def_toolame='#define HAVE_TOOLAME 1'
+ _codecmodules="$_codecmodules toolame"
+else
+ _def_toolame='#undef HAVE_TOOLAME'
+ _toolame_lib=""
+ _nocodecmodules="toolame $_nocodecmodules"
+fi
+if test -z "$_toolamedir" ; then
+ echores "$_toolame"
+else
+ echores "$_toolame (using $_toolamedir)"
+fi
echocheck "OggVorbis support"
if test "$_vorbis" = auto ; then
@@ -6351,6 +6385,9 @@
XMMS_LIB = $_xmms_lib
MACOSX = $_macosx
MACOSX_FRAMEWORKS = $_macosx_frameworks
+TOOLAME=$_toolame
+TOOLAME_EXTRAFLAGS=$_toolame_extraflags
+TOOLAME_LIB=$_toolame_lib
# --- Some stuff for autoconfigure ----
$_target_arch
@@ -6966,6 +7003,7 @@
$_def_aa
$_def_caca
$_def_tga
+$_def_toolame
/* used by GUI: */
$_def_xshape
- Previous message: [Mplayer-cvslog] CVS: main Makefile,1.301,1.302
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs ad_acm.c, 1.12, 1.13 ad_alaw.c, 1.3, 1.4 ad_dk3adpcm.c, 1.6, 1.7 ad_dmo.c, 1.2, 1.3 ad_dshow.c, 1.5, 1.6 ad_faad.c, 1.14, 1.15 ad_ffmpeg.c, 1.15, 1.16 ad_imaadpcm.c, 1.7, 1.8 ad_liba52.c, 1.13, 1.14 ad_libmad.c, 1.3, 1.4 ad_mp3lib.c, 1.6, 1.7 ad_msadpcm.c, 1.10, 1.11 ad_msgsm.c, 1.4, 1.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list