From: Diego Biurrun Date: Mon, 5 Feb 2007 15:10:46 +0000 (+0000) Subject: Simplify and speedup FFMPEG_CONFIGURATION. X-Git-Tag: v0.5~10232 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e681906108e6281cca9fd52cb18e53054cfd0fdf;p=platform%2Fupstream%2Flibav.git Simplify and speedup FFMPEG_CONFIGURATION. Originally committed as revision 7825 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/configure b/configure index bb1c4d3..9234fc0 100755 --- a/configure +++ b/configure @@ -943,10 +943,7 @@ if test x"$1" = x"-h" -o x"$1" = x"--help" ; then show_help fi -FFMPEG_CONFIGURATION=" " -for opt do - FFMPEG_CONFIGURATION="$FFMPEG_CONFIGURATION""$opt " -done +FFMPEG_CONFIGURATION="$@" ENCODER_LIST=`sed -n 's/^[^#]*ENC.*, *\(.*\)).*/\1_encoder/p' "$source_path/libavcodec/allcodecs.c"` DECODER_LIST=`sed -n 's/^[^#]*DEC.*, *\(.*\)).*/\1_decoder/p' "$source_path/libavcodec/allcodecs.c"`