diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-05-06 10:57:38 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-05-06 10:57:38 +0000 |
commit | 60827a1a802f0608852b1bd2184fc7d4bcd71cd4 (patch) | |
tree | 4a5d26cba910508932d9b21a0ca0bf38e845f1c9 /configure | |
parent | 46fe31a019364fbc0b15b78fb0dc5f5d253cf688 (diff) | |
download | ffmpeg-60827a1a802f0608852b1bd2184fc7d4bcd71cd4.tar.gz |
Further simplify AMR build.
Originally committed as revision 5347 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -591,13 +591,13 @@ for opt do ;; --enable-small) optimize="small" ;; - --enable-amr_nb) amr_nb="yes"; amr_nb_fixed="no" + --enable-amr_nb) amr="yes"; amr_nb="yes"; amr_nb_fixed="no" ;; - --enable-amr_nb-fixed) amr_nb_fixed="yes"; amr_nb="no" + --enable-amr_nb-fixed) amr="yes"; amr_nb_fixed="yes"; amr_nb="no" ;; - --enable-amr_wb) amr_wb="yes" + --enable-amr_wb) amr="yes"; amr_wb="yes" ;; - --enable-amr_if2) amr_if2="yes" + --enable-amr_if2) amr="yes"; amr_if2="yes" ;; --enable-sunmlib) sunmlib="yes" ;; @@ -1913,6 +1913,11 @@ fi echo "SRC_PATH=$source_path" >> config.mak echo "BUILD_ROOT=$PWD" >> config.mak +if test "$amr" = "yes" ; then + echo "#define AMR 1" >> $TMPH + echo "AMR=yes" >> config.mak +fi + if test "$amr_wb" = "yes" ; then echo "#define AMR_WB 1" >> $TMPH echo "AMR_WB=yes" >> config.mak |