diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-02-05 15:10:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-02-05 15:10:46 +0000 |
commit | e681906108e6281cca9fd52cb18e53054cfd0fdf (patch) | |
tree | d6c4a66db2e8c559afc9d3a52af87908329791ed | |
parent | 52548eeede51e43c811b813d0b9c7144f5939046 (diff) | |
download | ffmpeg-e681906108e6281cca9fd52cb18e53054cfd0fdf.tar.gz |
Simplify and speedup FFMPEG_CONFIGURATION.
Originally committed as revision 7825 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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"` |