[Ffmpeg-cvslog] CVS: ffmpeg configure,1.168,1.169

Michael Niedermayer CVS michael
Mon May 2 11:47:49 CEST 2005


Update of /cvsroot/ffmpeg/ffmpeg
In directory mail:/var2/tmp/cvs-serv5626

Modified Files:
	configure 
Log Message:
--enable/disable-codec / --disable-encoders (configure part only, no actual #ifdefs)


Index: configure
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/configure,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -d -r1.168 -r1.169
--- configure	25 Apr 2005 15:13:39 -0000	1.168
+++ configure	2 May 2005 09:47:46 -0000	1.169
@@ -70,6 +70,9 @@
 echo "  --enable-small           optimize for size instead of speed"
 echo "  --enable-memalign-hack   emulate memalign, interferes with memory debuggers"
 echo "  --disable-strip          disable stripping of executables and shared libraries"
+echo "  --enable-code=codec      enables codec"
+echo "  --disable-code=codec     disables codec"
+echo "  --disable-encoders       disables all encoders"
 echo ""
 echo "NOTE: The object files are build at the place where configure is launched"
 exit 1
@@ -376,6 +379,8 @@
   FFMPEG_CONFIGURATION="$FFMPEG_CONFIGURATION""$opt "
 done
 
+CODEC_LIST=`grep 'register_avcodec(&[a-z]' libavcodec/allcodecs.c  | sed 's/.*&\(.*\)).*/\1/'`
+
 for opt do
   case "$opt" in
   --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
@@ -490,6 +495,12 @@
   ;;
   --disable-strip) dostrip="no"
   ;;
+  --enable-codec=*) CODEC_LIST="$CODEC_LIST ${opt#--enable-codec=}"
+  ;;
+  --disable-codec=*) CODEC_LIST="`echo $CODEC_LIST | sed -e \"s#${opt#--disable-codec=}##\"`"
+  ;;
+  --disable-encoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*encoder//g'`"
+  ;;
   esac
 done
 
@@ -1577,6 +1588,10 @@
 
 fi
 
+for codec in $CODEC_LIST ; do
+    echo "#define CONFIG_`echo $codec | awk '{$1=toupper($1)}1'` 1" >> $TMPH
+done
+
 diff $TMPH config.h >/dev/null 2>&1
 if test $? -ne 0 ; then
 	mv -f $TMPH config.h





More information about the ffmpeg-cvslog mailing list