[Ffmpeg-cvslog] CVS: ffmpeg configure,1.266,1.267
Diego Biurrun CVS
diego
Sat May 6 12:57:40 CEST 2006
Update of /cvsroot/ffmpeg/ffmpeg
In directory mail:/var2/tmp/cvs-serv13060
Modified Files:
configure
Log Message:
Further simplify AMR build.
Index: configure
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/configure,v
retrieving revision 1.266
retrieving revision 1.267
diff -u -d -r1.266 -r1.267
--- configure 27 Apr 2006 02:38:41 -0000 1.266
+++ configure 6 May 2006 10:57:37 -0000 1.267
@@ -591,13 +591,13 @@
;;
--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 @@
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
More information about the ffmpeg-cvslog
mailing list