diff options
author | Torsten Martinsen <tma@gatehouse.dk> | 2005-03-05 11:44:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-03-05 11:44:25 +0000 |
commit | 2a515c08f25dc4c78c09b4600358574ef34b4ea5 (patch) | |
tree | e595ab4a303128caf9db6ef2eecfbff871f9fdf2 /configure | |
parent | 27ef18d12f135399e89ff3e94263016870f64a24 (diff) | |
download | ffmpeg-2a515c08f25dc4c78c09b4600358574ef34b4ea5.tar.gz |
Support for AMR Interface Format 2 patch by ("Torsten Martinsen" <tma gatehouse dk>)
Originally committed as revision 4007 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -194,6 +194,7 @@ EXESUF="" amr_nb="no" amr_wb="no" amr_nb_fixed="no" +amr_if2="no" sunmlib="no" pthreads="no" gpl="no" @@ -467,6 +468,8 @@ for opt do ;; --enable-amr_wb) amr_wb="yes" ;; + --enable-amr_if2) amr_if2="yes" + ;; --enable-sunmlib) sunmlib="yes" ;; --enable-pthreads) pthreads="yes" @@ -1105,6 +1108,7 @@ echo "pthreads support" $pthreads echo "AMR-NB float support" $amr_nb echo "AMR-NB fixed support" $amr_nb_fixed echo "AMR-WB float support" $amr_wb +echo "AMR-WB IF2 support" $amr_if2 echo "network support $network" if test "$network" = "yes" ; then echo "IPv6 support $ipv6" @@ -1541,6 +1545,10 @@ else echo fi +if test "$amr_if2" = "yes" ; then + echo "AMR_CFLAGS=-DIF2=1" >> config.mak +fi + fi diff $TMPH config.h >/dev/null 2>&1 |