diff options
author | Måns Rullgård <mans@mansr.com> | 2007-02-11 19:36:04 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-02-11 19:36:04 +0000 |
commit | 12b61a74ada9ca231d5a4c5b8f578f8c5a496d4b (patch) | |
tree | 5fc73d75eecf7a03d90f2fcf214396ebe0ede010 /configure | |
parent | f4ca50798037e3a512ebd3a357f29c40585c76b2 (diff) | |
download | ffmpeg-12b61a74ada9ca231d5a4c5b8f578f8c5a496d4b.tar.gz |
clean up amr option handling
Originally committed as revision 7940 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -1104,13 +1104,13 @@ for opt do ;; --enable-small) optimize="small" ;; - --enable-amr_nb) amr="yes"; amr_nb="yes"; amr_nb_fixed="no" + --enable-amr_nb) amr_nb="yes" ;; - --enable-amr_nb-fixed) amr="yes"; amr_nb_fixed="yes"; amr_nb="no" + --enable-amr_nb-fixed) amr_nb_fixed="yes" ;; - --enable-amr_wb) amr="yes"; amr_wb="yes" + --enable-amr_wb) amr_wb="yes" ;; - --enable-amr_if2) amr="yes"; amr_if2="yes" + --enable-amr_if2) amr_if2="yes" ;; --enable-sunmlib) mlib="yes" ;; @@ -1560,6 +1560,10 @@ for thread in pthreads beosthreads os2threads w32threads; do fi done +enabled_any amr_nb amr_nb_fixed amr_wb amr_if2 && enable amr +enabled_all amr_nb amr_nb_fixed && + die "Only one of amr_nb and amr_nb_fixed may be enabled." + # these are off by default, so fail if requested and not available enabled libdts && require libdts dts.h dts_init -ldts -lm enabled libgsm && require libgsm gsm.h gsm_create -lgsm |