summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-09-28 20:34:11 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-09-28 20:34:11 +0000
commitd663a1fdc0fd405aafabc9bca6d19d02ca640df9 (patch)
tree7b8bbe5e7c61c935111aa68aec37fdd441e1327c /configure
parentcd1f22f97e9cec9a64c41f33dfd9658c73461270 (diff)
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
Originally committed as revision 2311 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure13
1 files changed, 13 insertions, 0 deletions
diff --git a/configure b/configure
index 13921937e0..3b70f6439d 100755
--- a/configure
+++ b/configure
@@ -102,6 +102,7 @@ SLIBSUF=".so"
EXESUF=""
risky="yes"
amr_nb="no"
+amr_wb="no"
amr_nb_fixed="no"
sunmlib="no"
@@ -850,6 +851,7 @@ fi
echo "Sun medialib support" $sunmlib
echo "AMR-NB float support" $amr_nb
echo "AMR-NB fixed support" $amr_nb_fixed
+echo "AMR-WB float support" $amr_wb
echo "Creating config.mak and config.h"
@@ -1137,6 +1139,17 @@ if test "$source_path_used" = "yes" ; then
fi
echo "SRC_PATH=$source_path" >> config.mak
+if test "$amr_wb" = "yes" ; then
+ echo "#define AMR_WB 1" >> $TMPH
+ echo "AMR_WB=yes" >> config.mak
+ echo
+ echo "AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204"
+ echo "V5.1.0 from "
+ echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip"
+ echo "and extracted the source to libavcodec/amrwb_float"
+ echo
+fi
+
if test "$amr_nb" = "yes" ; then
echo "#define AMR_NB 1" >> $TMPH
echo "AMR_NB=yes" >> config.mak