summaryrefslogtreecommitdiffstats
path: root/edl.c
diff options
context:
space:
mode:
authorods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-06 08:52:18 +0000
committerods15 <ods15@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-12-06 08:52:18 +0000
commit0fe5fb1e00cbb9ecbb198fb52da49c5757f4f576 (patch)
tree8db1df4c76df3413eaca4593b7118b5352131168 /edl.c
parentf95066fb03378aed9b74f471a57cb6e09ba37064 (diff)
downloadmpv-0fe5fb1e00cbb9ecbb198fb52da49c5757f4f576.tar.bz2
mpv-0fe5fb1e00cbb9ecbb198fb52da49c5757f4f576.tar.xz
Fix EDL to be per file, allow -edlout and -edl together as there is really
no reason not to. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17110 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'edl.c')
-rw-r--r--edl.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/edl.c b/edl.c
index 0433b68bc1..489d4a748a 100644
--- a/edl.c
+++ b/edl.c
@@ -11,24 +11,6 @@ char *edl_output_filename; // file to put EDL entries in (-edlout)
#ifdef USE_EDL
/**
- * We can't do -edl and -edlout at the same time
- * so we check that here.
- *
- * \return EDL_ERROR on error and 1 otherwise.
- * \brief Makes sure EDL has been called correctly.
- */
-
-int edl_check_mode(void)
-{
- if (edl_filename && edl_output_filename)
- {
- return (EDL_ERROR);
- }
-
- return (1);
-}
-
-/**
* Allocates a new EDL record and makes sure allocation was successful.
*
* \return New allocated EDL record.