view edl.h @ 17098:0b6c9d7387b4

fix ps_dec.c:1938: warning: missing braces around initializer ps_dec.c:1938: warning: (near initialization for 'X_hybrid_left[0][0]') ps_dec.c:1939: warning: missing braces around initializer ps_dec.c:1939: warning: (near initialization for 'X_hybrid_right[0][0]') sbr_dec.c:530: warning: missing braces around initializer sbr_dec.c:530: warning: (near initialization for 'X_left[0][0]') sbr_dec.c:531: warning: missing braces around initializer sbr_dec.c:531: warning: (near initialization for 'X_right[0][0]')
author rathann
date Mon, 05 Dec 2005 01:31:53 +0000
parents 664b06b907cb
children 327be31a101d
line wrap: on
line source

// EDL version 0.6

#ifndef EDLH
#define EDLH

#define EDL_SKIP 0
#define EDL_MUTE 1
#define EDL_ERROR -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)

int edl_check_mode(void); // we cannot do -edl and -edlout at the same time
void free_edl(edl_record_ptr next_edl_record); // free's entire EDL list.
edl_record_ptr edl_parse_file(); // fills EDL stack

#endif