comparison configure @ 7729:36170c5a3c9a

liblzo realtime video codec support (decoding only) patch by Tilmann Bitterberg <transcode@tibit.org>
author arpi
date Sun, 13 Oct 2002 21:40:10 +0000
parents 9068ed109341
children c81e5a7f5862
comparison
equal deleted inserted replaced
7728:64b5604195c5 7729:36170c5a3c9a
153 153
154 Codecs: 154 Codecs:
155 --enable-gif enable gif89a output support [autodetect] 155 --enable-gif enable gif89a output support [autodetect]
156 --enable-png enable png input/output support [autodetect] 156 --enable-png enable png input/output support [autodetect]
157 --enable-jpeg enable jpeg input/output support [autodetect] 157 --enable-jpeg enable jpeg input/output support [autodetect]
158 --enable-lzo enable lzo input support [autodetect]
158 --disable-win32 disable Win32 DLL support [autodetect] 159 --disable-win32 disable Win32 DLL support [autodetect]
159 --disable-dshow disable Win32/DirectShow support [autodetect] 160 --disable-dshow disable Win32/DirectShow support [autodetect]
160 --disable-xanim disable XAnim DLL support [autodetect] 161 --disable-xanim disable XAnim DLL support [autodetect]
161 --disable-real disable RealPlayer DLL support [autodetect] 162 --disable-real disable RealPlayer DLL support [autodetect]
162 --disable-xvid disable XviD codec [autodetect] 163 --disable-xvid disable XviD codec [autodetect]
947 _dxr3=auto 948 _dxr3=auto
948 _iconv=auto 949 _iconv=auto
949 _rtc=auto 950 _rtc=auto
950 _ossaudio=auto 951 _ossaudio=auto
951 _arts=auto 952 _arts=auto
953 _lzo=auto
952 _mad=auto 954 _mad=auto
953 _vorbis=auto 955 _vorbis=auto
954 _faad=auto 956 _faad=auto
955 _css=auto 957 _css=auto
956 _dvdnav=yes 958 _dvdnav=yes
1071 --disable-ossaudio) _ossaudio=no ;; 1073 --disable-ossaudio) _ossaudio=no ;;
1072 --enable-arts) _arts=yes ;; 1074 --enable-arts) _arts=yes ;;
1073 --disable-arts) _arts=no ;; 1075 --disable-arts) _arts=no ;;
1074 --enable-mad) _mad=yes ;; 1076 --enable-mad) _mad=yes ;;
1075 --disable-mad) _mad=no ;; 1077 --disable-mad) _mad=no ;;
1078 --enable-lzo) _lzo=yes ;;
1079 --disable-lzo) _lzo=no ;;
1076 --enable-vorbis) _vorbis=yes ;; 1080 --enable-vorbis) _vorbis=yes ;;
1077 --disable-vorbis) _vorbis=no ;; 1081 --disable-vorbis) _vorbis=no ;;
1078 --enable-faad) _faad=yes ;; 1082 --enable-faad) _faad=yes ;;
1079 --disable-faad) _faad=no ;; 1083 --disable-faad) _faad=no ;;
1080 --enable-css) _css=yes ;; 1084 --enable-css) _css=yes ;;
3393 else 3397 else
3394 _def_rtc='#undef HAVE_RTC' 3398 _def_rtc='#undef HAVE_RTC'
3395 fi 3399 fi
3396 3400
3397 3401
3402 echocheck "lzo support"
3403 if test "$_lzo" = auto ; then
3404 _lzo=no
3405 cat > $TMPC << EOF
3406 #include <lzo1x.h>
3407 int main(void) { lzo_init();return 0; }
3408 EOF
3409 cc_check -llzo && _lzo=yes
3410 fi
3411 if test "$_lzo" = yes ; then
3412 _def_lzo='#define USE_LZO 1'
3413 _ld_lzo='-llzo'
3414 _codecmodules="lzo $_codecmodules"
3415 _mkf_lzo="yes"
3416 else
3417 _def_lzo='#undef USE_LZO'
3418 _nocodecmodules="lzo $_nocodecmodules"
3419 _mkf_lzo="no"
3420 fi
3421 echores "$_lzo"
3422
3423
3398 echocheck "mad support" 3424 echocheck "mad support"
3399 if test "$_mad" = auto ; then 3425 if test "$_mad" = auto ; then
3400 _mad=no 3426 _mad=no
3401 cat > $TMPC << EOF 3427 cat > $TMPC << EOF
3402 #include <mad.h> 3428 #include <mad.h>
4453 DIRECTFB_LIB = $_ld_directfb 4479 DIRECTFB_LIB = $_ld_directfb
4454 CDPARANOIA_INC = $_inc_cdparanoia 4480 CDPARANOIA_INC = $_inc_cdparanoia
4455 CDPARANOIA_LIB = $_ld_cdparanoia 4481 CDPARANOIA_LIB = $_ld_cdparanoia
4456 FREETYPE_INC = $_inc_freetype 4482 FREETYPE_INC = $_inc_freetype
4457 FREETYPE_LIB = $_ld_freetype 4483 FREETYPE_LIB = $_ld_freetype
4484 LZO= $_mkf_lzo
4485 LZO_LIB= $_ld_lzo
4458 4486
4459 # --- Some stuff for autoconfigure ---- 4487 # --- Some stuff for autoconfigure ----
4460 $_target_arch 4488 $_target_arch
4461 $_confcygwin 4489 $_confcygwin
4462 TARGET_CPU=$iproc 4490 TARGET_CPU=$iproc
4794 $_def_gif 4822 $_def_gif
4795 $_def_gif_4 4823 $_def_gif_4
4796 4824
4797 /* enable FreeType support */ 4825 /* enable FreeType support */
4798 $_def_freetype 4826 $_def_freetype
4827
4828 /* liblzo support */
4829 $_def_lzo
4799 4830
4800 /* libmad support */ 4831 /* libmad support */
4801 $_def_mad 4832 $_def_mad
4802 4833
4803 /* enable OggVorbis support */ 4834 /* enable OggVorbis support */