diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-09-28 20:34:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-09-28 20:34:11 +0000 |
commit | d663a1fdc0fd405aafabc9bca6d19d02ca640df9 (patch) | |
tree | 7b8bbe5e7c61c935111aa68aec37fdd441e1327c /configure | |
parent | cd1f22f97e9cec9a64c41f33dfd9658c73461270 (diff) | |
download | ffmpeg-d663a1fdc0fd405aafabc9bca6d19d02ca640df9.tar.gz |
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-x | configure | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 |