comparison edl.h @ 8531:1aa2c9b460af

Merged EDL 0.5 patch - it's something like Quicktime's edit lists. (skip sections listed in a text file. it also supports creating them) patch by Michael Halcrow <mah69@email.byu.edu>
author arpi
date Mon, 23 Dec 2002 00:33:22 +0000
parents
children 41a21058e658
comparison
equal deleted inserted replaced
8530:f667ebaec04e 8531:1aa2c9b460af
1 // EDL version 0.5
2 // Author: Michael Halcrow <mhalcrow@byu.edu>
3
4 #ifndef EDLH
5 #define EDLH
6
7 #define EDL_SKIP 0
8 #define EDL_MUTE 1
9
10 #define MAX_EDL_ENTRIES 1000
11
12 struct edl_record {
13 float start_sec;
14 long start_frame;
15 float stop_sec;
16 long stop_frame;
17 float length_sec;
18 long length_frame;
19 short action;
20 struct edl_record* next;
21 };
22
23 typedef struct edl_record* edl_record_ptr;
24
25 #endif