disabling all decoders patch by (Emiliano Parasassi, millallo : tiscali it)

Originally committed as revision 4408 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Emiliano Parasassi 2005-06-28 14:59:36 +00:00 committed by Michael Niedermayer
parent ff547a52d2
commit b4cad5371b
1 changed files with 3 additions and 0 deletions

3
configure vendored
View File

@ -76,6 +76,7 @@ echo " --disable-strip disable stripping of executables and shared lib
echo " --enable-codec=codec enables codec"
echo " --disable-codec=codec disables codec"
echo " --disable-encoders disables all encoders"
echo " --disable-decoders disables all decoders"
echo ""
echo "NOTE: The object files are build at the place where configure is launched"
exit 1
@ -526,6 +527,8 @@ for opt do
;;
--disable-encoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*encoder//g'`"
;;
--disable-decoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*decoder//g'`"
;;
esac
done