view edl.h @ 18355:385b3505ac41

1.1276: Consistency for the 'i' key, [does not apply] document vglobal, aglobal and i_certify_that_i_am_the_longest_option_ever. 1.1275: Small grammar fix introduced by my previous commit :/ [does not apply] 1.1274: Small clarification to the i keystroke description [previously commited]
author kraymer
date Sun, 30 Apr 2006 13:16:17 +0000
parents f580a7755ac5
children 8338eda7af28
line wrap: on
line source

// EDL version 0.6

#ifndef EDLH
#define EDLH

#define EDL_SKIP 0
#define EDL_MUTE 1

#define EDL_MUTE_START 1
#define EDL_MUTE_END 0

struct edl_record {
  float start_sec;
  float stop_sec;
  float length_sec;
  short action;
  struct edl_record* next;
  struct edl_record* prev;
};

typedef struct edl_record* edl_record_ptr;

extern char *edl_filename; // file to extract EDL entries from (-edl)
extern char *edl_output_filename; // file to put EDL entries in (-edlout)

void free_edl(edl_record_ptr next_edl_record); // free's entire EDL list.
edl_record_ptr edl_parse_file(void); // fills EDL stack

#endif