summaryrefslogtreecommitdiffstats
path: root/edl.h
diff options
context:
space:
mode:
Diffstat (limited to 'edl.h')
-rw-r--r--edl.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/edl.h b/edl.h
index 07fd2e71de..1bc8e58159 100644
--- a/edl.h
+++ b/edl.h
@@ -1,12 +1,13 @@
-// EDL version 0.5
+// EDL version 0.6
#ifndef EDLH
#define EDLH
#define EDL_SKIP 0
#define EDL_MUTE 1
-
-#define MAX_EDL_ENTRIES 1000
+#define EDL_ERROR -1
+#define EDL_MUTE_START 1
+#define EDL_MUTE_END 0
struct edl_record {
float start_sec;
@@ -16,9 +17,17 @@ struct edl_record {
float length_sec;
long length_frame;
short action;
+ short mute_state;
struct edl_record* next;
};
typedef struct edl_record* edl_record_ptr;
+char *edl_filename; // file to extract edl entries from (-edl)
+char *edl_output_filename; // file to put edl entries in (-edlout)
+
+int edl_check_mode(void); // we cannot do -edl and -edlout at the same time
+int edl_count_entries(void); // returns total No of entries needed
+int edl_parse_file(edl_record_ptr edl_records); // fills edl stack
+
#endif