view edl.h @ 19042:6f1e14a57fcc

r19046: two small fixes r18969: Mention hardware DTS pass-through. r18968: customtrect -vo gl suboption r18967: forgotten customtlin -vo gl suboption documentation r18948: grammar/markup fixes r18942: Initial libass release (without mencoder support). r18928: some grammar/spelling/markup fixes for -rtsp-destination r18916: Modifies behavior of -edlout r18882: updated english and french manpages with new -rtsp-destination option
author kraymer
date Wed, 12 Jul 2006 20:59:08 +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