Mercurial > mplayer.hg
comparison configure @ 5190:59df6b778d78
Beta AAC decoding support, seeking totally broken yet, add philipps mpeg4 video in qt to ffmpeg4 although it's still buggy in decoding
author | atmos4 |
---|---|
date | Mon, 18 Mar 2002 23:30:04 +0000 |
parents | 5ad4891530b5 |
children | 40c6df15c3df |
comparison
equal
deleted
inserted
replaced
5189:c663455448e8 | 5190:59df6b778d78 |
---|---|
129 --disable-xanim disable XAnim DLL support [autodetect] | 129 --disable-xanim disable XAnim DLL support [autodetect] |
130 --disable-xvid disable XviD codec [autodetect] | 130 --disable-xvid disable XviD codec [autodetect] |
131 --disable-divx4linux disable DivX4linux codec [autodetect] | 131 --disable-divx4linux disable DivX4linux codec [autodetect] |
132 --disable-opendivx disable OpenDivx codec [enable] | 132 --disable-opendivx disable OpenDivx codec [enable] |
133 --enable-vorbis build with OggVorbis support [autodetect] | 133 --enable-vorbis build with OggVorbis support [autodetect] |
134 --enable-faad build with FAAD (AAC) support [autodetect] | |
134 --disable-iconv do not use iconv(3) function [autodetect] | 135 --disable-iconv do not use iconv(3) function [autodetect] |
135 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect] | 136 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect] |
136 --disable-mp1e disable libmp1e support | 137 --disable-mp1e disable libmp1e support |
137 (use this option if it does not compile) [enable] | 138 (use this option if it does not compile) [enable] |
138 --disable-streaming disable network streaming support | 139 --disable-streaming disable network streaming support |
754 _iconv=auto | 755 _iconv=auto |
755 _rtc=auto | 756 _rtc=auto |
756 _ossaudio=auto | 757 _ossaudio=auto |
757 _mad=auto | 758 _mad=auto |
758 _vorbis=auto | 759 _vorbis=auto |
760 _faad=auto | |
759 _css=auto | 761 _css=auto |
760 _dvdread=auto | 762 _dvdread=auto |
761 _xanim=auto | 763 _xanim=auto |
762 _xinerama=auto | 764 _xinerama=auto |
763 _mga=auto | 765 _mga=auto |
857 --disable-ossaudio) _ossaudio=no ;; | 859 --disable-ossaudio) _ossaudio=no ;; |
858 --enable-mad) _mad=yes ;; | 860 --enable-mad) _mad=yes ;; |
859 --disable-mad) _mad=no ;; | 861 --disable-mad) _mad=no ;; |
860 --enable-vorbis) _vorbis=yes ;; | 862 --enable-vorbis) _vorbis=yes ;; |
861 --disable-vorbis) _vorbis=no ;; | 863 --disable-vorbis) _vorbis=no ;; |
864 --enable-faad) _faad=yes ;; | |
865 --disable-faad) _faad=no ;; | |
862 --enable-css) _css=yes ;; | 866 --enable-css) _css=yes ;; |
863 --disable-css) _css=no ;; | 867 --disable-css) _css=no ;; |
864 --enable-dvdread) _dvdread=yes ;; | 868 --enable-dvdread) _dvdread=yes ;; |
865 --disable-dvdread) _dvdread=no ;; | 869 --disable-dvdread) _dvdread=no ;; |
866 --enable-xanim) _xanim=yes ;; | 870 --enable-xanim) _xanim=yes ;; |
2475 _def_vorbis='#undef HAVE_OGGVORBIS' | 2479 _def_vorbis='#undef HAVE_OGGVORBIS' |
2476 fi | 2480 fi |
2477 echores "$_vorbis" | 2481 echores "$_vorbis" |
2478 | 2482 |
2479 | 2483 |
2484 echocheck "FAAD (AAC) support" | |
2485 if test "$_faad" = auto ; then | |
2486 _faad=no | |
2487 cat > $TMPC << EOF | |
2488 #include <faad.h> | |
2489 int main(void) { return 0; } | |
2490 EOF | |
2491 cc_check -lfaad -lm && _faad=yes | |
2492 fi | |
2493 if test "$_faad" = yes ; then | |
2494 _def_faad='#define HAVE_FAAD 1' | |
2495 _ld_faad='-lfaad' | |
2496 else | |
2497 _def_faad='#undef HAVE_FAAD' | |
2498 fi | |
2499 echores "$_faad" | |
2500 | |
2501 | |
2480 echocheck "Win32 DLL support" | 2502 echocheck "Win32 DLL support" |
2481 qnx && _win32=no | 2503 qnx && _win32=no |
2482 if test "$_win32" = auto ; then | 2504 if test "$_win32" = auto ; then |
2483 _win32=no | 2505 _win32=no |
2484 if x86 ; then | 2506 if x86 ; then |
3224 # audio output | 3246 # audio output |
3225 ALSA_LIB = $_ld_alsa | 3247 ALSA_LIB = $_ld_alsa |
3226 NAS_LIB = $_ld_nas | 3248 NAS_LIB = $_ld_nas |
3227 MAD_LIB = $_ld_mad | 3249 MAD_LIB = $_ld_mad |
3228 VORBIS_LIB = $_ld_vorbis | 3250 VORBIS_LIB = $_ld_vorbis |
3251 FAAD_LIB = $_ld_faad | |
3229 SGIAUDIO_LIB = $_ld_sgiaudio | 3252 SGIAUDIO_LIB = $_ld_sgiaudio |
3230 | 3253 |
3231 # input | 3254 # input |
3232 TERMCAP_LIB = $_ld_termcap | 3255 TERMCAP_LIB = $_ld_termcap |
3233 LIRC_LIB = $_ld_lirc | 3256 LIRC_LIB = $_ld_lirc |
3514 /* libmad support */ | 3537 /* libmad support */ |
3515 $_def_mad | 3538 $_def_mad |
3516 | 3539 |
3517 /* enable OggVorbis support */ | 3540 /* enable OggVorbis support */ |
3518 $_def_vorbis | 3541 $_def_vorbis |
3542 | |
3543 /* enable FAAD (AAC) support */ | |
3544 $_def_faad | |
3519 | 3545 |
3520 /* enable streaming */ | 3546 /* enable streaming */ |
3521 $_def_streaming | 3547 $_def_streaming |
3522 | 3548 |
3523 /* enables / disables vidix usage */ | 3549 /* enables / disables vidix usage */ |