summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-23 00:33:22 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-23 00:33:22 +0000
commit7f1c5834473c4041337e30f5e606aca629498aa7 (patch)
treee4d54c5ec378c502d6f8ffe19c068c8295ee5735 /configure
parentda027164877a7a8c2288256145ee16c7878c36b2 (diff)
downloadmpv-7f1c5834473c4041337e30f5e606aca629498aa7.tar.bz2
mpv-7f1c5834473c4041337e30f5e606aca629498aa7.tar.xz
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> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8532 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure b/configure
index 925fc1d819..e3820480a5 100755
--- a/configure
+++ b/configure
@@ -140,6 +140,7 @@ Optional features:
--disable-tv disable TV Interface (tv/dvb grabbers) [enable]
--disable-tv-v4l disable Video4Linux TV Interface support [autodetect]
--disable-tv-bsdbt848 disable BSD BT848 Interface support [autodetect]
+ --disable-edl disable EDL (edit decision list) support [enable]
--disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
--disable-streaming disable network streaming support
(support for: http/mms/rtp) [enable]
@@ -1003,6 +1004,7 @@ _select=yes
_tv=yes
_tv_v4l=auto
_tv_bsdbt848=auto
+_edl=yes
_streaming=yes
_vidix=auto
_joystick=no
@@ -1153,6 +1155,8 @@ for ac_option do
--disable-alsa) _alsa=no ;;
--enable-tv) _tv=yes ;;
--disable-tv) _tv=no ;;
+ --enable-edl) _edl=yes ;;
+ --disable-edl) _edl=no ;;
--enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
--disable-tv-bsdbt848) _tv_bsdbt848=no ;;
--enable-tv-v4l) _tv_v4l=yes ;;
@@ -4210,6 +4214,16 @@ else
fi
echores "$_tv"
+echocheck "EDL support"
+if test "$_edl" = yes ; then
+ _def_edl='#define USE_EDL'
+ _inputmodules="edl $_inputmodules"
+else
+ _noinputmodules="edl $_noinputmodules"
+ _def_edl='#undef USE_EDL'
+fi
+echores "$_edl"
+
echocheck "*BSD BrookTree 848 TV interface"
if test "$_tv_bsdbt848" = auto ; then
_tv_bsdbt848=no
@@ -5027,6 +5041,9 @@ $_def_nas
/* Enable TV Interface support */
$_def_tv
+/* Enable EDL support */
+$_def_edl
+
/* Enable Video 4 Linux TV interface support */
$_def_tv_v4l