comparison configure @ 8531:1aa2c9b460af

Merged EDL 0.5 patch - it's something like Quicktime's edit lists. (skip sections listed in a text file. it also supports creating them) patch by Michael Halcrow <mah69@email.byu.edu>
author arpi
date Mon, 23 Dec 2002 00:33:22 +0000
parents 9d143176d95f
children 46dbfa8c1999
comparison
equal deleted inserted replaced
8530:f667ebaec04e 8531:1aa2c9b460af
138 --enable-lirc enable LIRC (remote control) support [autodetect] 138 --enable-lirc enable LIRC (remote control) support [autodetect]
139 --enable-joystick enable joystick support [disable] 139 --enable-joystick enable joystick support [disable]
140 --disable-tv disable TV Interface (tv/dvb grabbers) [enable] 140 --disable-tv disable TV Interface (tv/dvb grabbers) [enable]
141 --disable-tv-v4l disable Video4Linux TV Interface support [autodetect] 141 --disable-tv-v4l disable Video4Linux TV Interface support [autodetect]
142 --disable-tv-bsdbt848 disable BSD BT848 Interface support [autodetect] 142 --disable-tv-bsdbt848 disable BSD BT848 Interface support [autodetect]
143 --disable-edl disable EDL (edit decision list) support [enable]
143 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect] 144 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
144 --disable-streaming disable network streaming support 145 --disable-streaming disable network streaming support
145 (support for: http/mms/rtp) [enable] 146 (support for: http/mms/rtp) [enable]
146 --enable-live enable LIVE.COM Streaming Media support [disable] 147 --enable-live enable LIVE.COM Streaming Media support [disable]
147 --disable-dvdnav Disable dvdnav support [autodetect] 148 --disable-dvdnav Disable dvdnav support [autodetect]
1001 _dshow=yes 1002 _dshow=yes
1002 _select=yes 1003 _select=yes
1003 _tv=yes 1004 _tv=yes
1004 _tv_v4l=auto 1005 _tv_v4l=auto
1005 _tv_bsdbt848=auto 1006 _tv_bsdbt848=auto
1007 _edl=yes
1006 _streaming=yes 1008 _streaming=yes
1007 _vidix=auto 1009 _vidix=auto
1008 _joystick=no 1010 _joystick=no
1009 _xvid=auto 1011 _xvid=auto
1010 _divx4linux=auto 1012 _divx4linux=auto
1151 --disable-sgiaudio) _sgiaudio=no ;; 1153 --disable-sgiaudio) _sgiaudio=no ;;
1152 --enable-alsa) _alsa=yes ;; 1154 --enable-alsa) _alsa=yes ;;
1153 --disable-alsa) _alsa=no ;; 1155 --disable-alsa) _alsa=no ;;
1154 --enable-tv) _tv=yes ;; 1156 --enable-tv) _tv=yes ;;
1155 --disable-tv) _tv=no ;; 1157 --disable-tv) _tv=no ;;
1158 --enable-edl) _edl=yes ;;
1159 --disable-edl) _edl=no ;;
1156 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;; 1160 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1157 --disable-tv-bsdbt848) _tv_bsdbt848=no ;; 1161 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1158 --enable-tv-v4l) _tv_v4l=yes ;; 1162 --enable-tv-v4l) _tv_v4l=yes ;;
1159 --disable-tv-v4l) _tv_v4l=no ;; 1163 --disable-tv-v4l) _tv_v4l=no ;;
1160 --enable-fastmemcpy) _fastmemcpy=yes ;; 1164 --enable-fastmemcpy) _fastmemcpy=yes ;;
4208 _noinputmodules="tv $_noinputmodules" 4212 _noinputmodules="tv $_noinputmodules"
4209 _def_tv='#undef USE_TV' 4213 _def_tv='#undef USE_TV'
4210 fi 4214 fi
4211 echores "$_tv" 4215 echores "$_tv"
4212 4216
4217 echocheck "EDL support"
4218 if test "$_edl" = yes ; then
4219 _def_edl='#define USE_EDL'
4220 _inputmodules="edl $_inputmodules"
4221 else
4222 _noinputmodules="edl $_noinputmodules"
4223 _def_edl='#undef USE_EDL'
4224 fi
4225 echores "$_edl"
4226
4213 echocheck "*BSD BrookTree 848 TV interface" 4227 echocheck "*BSD BrookTree 848 TV interface"
4214 if test "$_tv_bsdbt848" = auto ; then 4228 if test "$_tv_bsdbt848" = auto ; then
4215 _tv_bsdbt848=no 4229 _tv_bsdbt848=no
4216 if test "$_tv" = yes ; then 4230 if test "$_tv" = yes ; then
4217 cat > $TMPC <<EOF 4231 cat > $TMPC <<EOF
5025 #undef FAST_OSD_TABLE 5039 #undef FAST_OSD_TABLE
5026 5040
5027 /* Enable TV Interface support */ 5041 /* Enable TV Interface support */
5028 $_def_tv 5042 $_def_tv
5029 5043
5044 /* Enable EDL support */
5045 $_def_edl
5046
5030 /* Enable Video 4 Linux TV interface support */ 5047 /* Enable Video 4 Linux TV interface support */
5031 $_def_tv_v4l 5048 $_def_tv_v4l
5032 5049
5033 /* Enable *BSD BrookTree TV interface support */ 5050 /* Enable *BSD BrookTree TV interface support */
5034 $_def_tv_bsdbt848 5051 $_def_tv_bsdbt848