[MPlayer-cvslog] r18978 - trunk/configure

diego subversion at mplayerhq.hu
Sun Jul 9 17:38:06 CEST 2006


Author: diego
Date: Sun Jul  9 17:38:05 2006
New Revision: 18978

Modified:
   trunk/configure

Log:
Sync with latest FFmpeg build system changes, now parsers can be
enabled/disabled individually.


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sun Jul  9 17:38:05 2006
@@ -295,7 +295,9 @@
   --disable-amr_nb-fixed disable amr narrowband, fixed point [autodetect]
   --disable-amr_wb       disable amr wideband, floating point [autodetect]
   --disable-codec=CODEC  disable specified codec
-  --enable-codec=CODEC   dnable specified codec
+  --enable-codec=CODEC   enable specified codec
+  --disable-parser=PARSER disable specified parser
+  --enable-parser=PARSER  enable specified parser
   
 Video output:
   --disable-vidix-internal disable internal VIDIX [for x86 *nix]
@@ -1553,6 +1555,7 @@
 _amr_nb_fixed=auto
 _amr_wb=auto
 _libavcodecs=`grep 'register_avcodec(&[a-z]' libavcodec/allcodecs.c  | sed 's/.*&\(.*\)).*/\1/'`
+_libavparsers=`grep 'av_register_codec_parser(&[a-z]' libavcodec/allcodecs.c  | sed 's/.*&\(.*\)).*/\1/'`
 _libavcodec_so=auto
 _libavformat=auto
 _libavformat_so=auto
@@ -1912,6 +1915,8 @@
   --disable-amr_wb)	_amr_wb=no	;;
   --enable-codec=*)	_libavcodecs="$_libavcodecs `echo $ac_option | cut -d '=' -f 2`" ;;
   --disable-codec=*)	_libavcodecs=`echo $_libavcodecs | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
+  --enable-parser=*)	_libavparsers="$_libavparsers `echo $ac_option | cut -d '=' -f 2`" ;;
+  --disable-parser=*)	_libavparsers=`echo $_libavparsers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
   --enable-libavformat)	_libavformat=yes;;
   --disable-libavformat)	_libavformat=no	;;
   --enable-libavformat_so)	_libavformat_so=yes	;;
@@ -7591,6 +7596,7 @@
 AMR_NB_FIXED=$_amr_nb_fixed
 AMR_WB=$_amr_wb
 `echo $_libavcodecs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
+`echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
 CONFIG_FAAC=$_faac
 CONFIG_XVID=$_lavc_xvid
 CONFIG_X264=$_x264



More information about the MPlayer-cvslog mailing list