Mercurial > mplayer.hg
comparison configure @ 5090:140e64b969e2
TVI BSD BT848 support
author | alex |
---|---|
date | Fri, 15 Mar 2002 16:10:29 +0000 |
parents | 0515832e6eab |
children | c1eeb9416fd1 |
comparison
equal
deleted
inserted
replaced
5089:d28504b410ad | 5090:140e64b969e2 |
---|---|
769 _win32=auto | 769 _win32=auto |
770 _dshow=yes | 770 _dshow=yes |
771 _select=yes | 771 _select=yes |
772 _tv=yes | 772 _tv=yes |
773 _tv_v4l=auto | 773 _tv_v4l=auto |
774 _tv_bsdbt848=auto | |
774 _streaming=yes | 775 _streaming=yes |
775 _vidix=yes | 776 _vidix=yes |
776 _new_input=yes | 777 _new_input=yes |
777 _joystick=no | 778 _joystick=no |
778 _xvid=auto | 779 _xvid=auto |
872 --disable-sgiaudio) _sgiaudio=no ;; | 873 --disable-sgiaudio) _sgiaudio=no ;; |
873 --enable-alsa) _alsa=yes ;; | 874 --enable-alsa) _alsa=yes ;; |
874 --disable-alsa) _alsa=no ;; | 875 --disable-alsa) _alsa=no ;; |
875 --enable-tv) _tv=yes ;; | 876 --enable-tv) _tv=yes ;; |
876 --disable-tv) _tv=no ;; | 877 --disable-tv) _tv=no ;; |
878 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;; | |
879 --disable-tv-bsdbt848) _tv_bsdbt848=no ;; | |
877 --enable-tv-v4l) _tv_v4l=yes ;; | 880 --enable-tv-v4l) _tv_v4l=yes ;; |
878 --disable-tv-v4l) _tv_v4l=no ;; | 881 --disable-tv-v4l) _tv_v4l=no ;; |
879 --enable-fastmemcpy) _fastmemcpy=yes ;; | 882 --enable-fastmemcpy) _fastmemcpy=yes ;; |
880 --disable-fastmemcpy) _fastmemcpy=no ;; | 883 --disable-fastmemcpy) _fastmemcpy=no ;; |
881 --enable-streaming) _streaming=yes ;; | 884 --enable-streaming) _streaming=yes ;; |
1488 _def_tdfxfb='#define HAVE_TDFXFB 1' | 1491 _def_tdfxfb='#define HAVE_TDFXFB 1' |
1489 _vosrc="$_vosrc vo_tdfxfb.c" | 1492 _vosrc="$_vosrc vo_tdfxfb.c" |
1490 _vomodules="tdfxfb $_vomodules" | 1493 _vomodules="tdfxfb $_vomodules" |
1491 else | 1494 else |
1492 _def_tdfxfb='#undef HAVE_TDFXFB' | 1495 _def_tdfxfb='#undef HAVE_TDFXFB' |
1493 _novomodules="tdfxf $_novomodules" | 1496 _novomodules="tdfxfb $_novomodules" |
1494 fi | 1497 fi |
1495 echores "$_tdfxfb" | 1498 echores "$_tdfxfb" |
1496 | 1499 |
1497 | 1500 |
1498 echocheck "DirectFB" | 1501 echocheck "DirectFB" |
2846 _noinputmodules="tv $_noinputmodules" | 2849 _noinputmodules="tv $_noinputmodules" |
2847 _def_tv='#undef USE_TV' | 2850 _def_tv='#undef USE_TV' |
2848 fi | 2851 fi |
2849 echores "$_tv" | 2852 echores "$_tv" |
2850 | 2853 |
2854 echocheck "*BSD BrookTree 848 TV interface" | |
2855 if test "$_tv_bsdbt848" = auto ; then | |
2856 _tv_bsdbt848=no | |
2857 if test "$_tv" = yes ; then | |
2858 cat > $TMPC <<EOF | |
2859 #include <sys/types.h> | |
2860 #include <machine/ioctl_bt848.h> | |
2861 int main(void) { return 0; } | |
2862 EOF | |
2863 cc_check && _tv_bsdbt848=yes | |
2864 fi | |
2865 fi | |
2866 if test "$_tv_bsdbt848" = yes ; then | |
2867 _def_tv_bsdbt848='#define HAVE_TV_BSDBT848 1' | |
2868 _inputmodules="tv-bsdbt848 $_inputmodules" | |
2869 else | |
2870 _def_tv_bsdbt848='#undef HAVE_TV_BSDBT848' | |
2871 fi | |
2872 echores "$_tv_bsdbt848" | |
2873 | |
2851 echocheck "Video 4 Linux TV interface" | 2874 echocheck "Video 4 Linux TV interface" |
2852 if test "$_tv_v4l" = auto ; then | 2875 if test "$_tv_v4l" = auto ; then |
2853 _tv_v4l=no | 2876 _tv_v4l=no |
2854 if test "$_tv" = yes && linux ; then | 2877 if test "$_tv" = yes && linux ; then |
2855 if test -c /dev/video0 || test -c /dev/video ; then | 2878 if test -c /dev/video0 || test -c /dev/video ; then |
3387 /* Enable TV Interface support */ | 3410 /* Enable TV Interface support */ |
3388 $_def_tv | 3411 $_def_tv |
3389 | 3412 |
3390 /* Enable Video 4 Linux TV interface support */ | 3413 /* Enable Video 4 Linux TV interface support */ |
3391 $_def_tv_v4l | 3414 $_def_tv_v4l |
3415 | |
3416 /* Enable *BSD BrookTree TV interface support */ | |
3417 $_def_tv_bsdbt848 | |
3392 | 3418 |
3393 /* Define if your processor stores words with the most significant | 3419 /* Define if your processor stores words with the most significant |
3394 byte first (like Motorola and SPARC, unlike Intel and VAX). */ | 3420 byte first (like Motorola and SPARC, unlike Intel and VAX). */ |
3395 $_def_words_endian | 3421 $_def_words_endian |
3396 | 3422 |