view edl.h @ 14343:7dd7c3a06360

1.832: small improvement 1.833: bump (left out since it's not in synced part) (x264) 1.834: Add -ao pcm suboptions and remove -aofile and -waveheader options. 1.835 & 1.836: bump (left out since it's not in synced part) (x264) 1.837: Default to audiodump.pcm with nowaveheader again finally added 'synced-to-here'-flag ----------------------------------------------------------------------
author kraymer
date Mon, 03 Jan 2005 23:10:52 +0000
parents 567875b88aab
children 7a80c6ac5058
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;
  long start_frame;
  float stop_sec;
  long stop_frame;
  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 number of entries needed
int edl_parse_file(edl_record_ptr edl_records); // fills EDL stack

#endif