Commit 324df330 authored by michael's avatar michael

--enable/disable-codec / --disable-encoders (configure part only, no actual #ifdefs)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4169 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9ac3f63c
...@@ -70,6 +70,9 @@ echo " --disable-ffplay disable ffplay build" ...@@ -70,6 +70,9 @@ echo " --disable-ffplay disable ffplay build"
echo " --enable-small optimize for size instead of speed" echo " --enable-small optimize for size instead of speed"
echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers" echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers"
echo " --disable-strip disable stripping of executables and shared libraries" 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 ""
echo "NOTE: The object files are build at the place where configure is launched" echo "NOTE: The object files are build at the place where configure is launched"
exit 1 exit 1
...@@ -376,6 +379,8 @@ for opt do ...@@ -376,6 +379,8 @@ for opt do
FFMPEG_CONFIGURATION="$FFMPEG_CONFIGURATION""$opt " FFMPEG_CONFIGURATION="$FFMPEG_CONFIGURATION""$opt "
done done
CODEC_LIST=`grep 'register_avcodec(&[a-z]' libavcodec/allcodecs.c | sed 's/.*&\(.*\)).*/\1/'`
for opt do for opt do
case "$opt" in case "$opt" in
--prefix=*) prefix=`echo $opt | cut -d '=' -f 2` --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
...@@ -490,6 +495,12 @@ for opt do ...@@ -490,6 +495,12 @@ for opt do
;; ;;
--disable-strip) dostrip="no" --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 esac
done done
...@@ -1577,6 +1588,10 @@ fi ...@@ -1577,6 +1588,10 @@ fi
fi 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 diff $TMPH config.h >/dev/null 2>&1
if test $? -ne 0 ; then if test $? -ne 0 ; then
mv -f $TMPH config.h mv -f $TMPH config.h
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment