r602: Fix baver's code... don't insert timecode when show_tc is not set
[cinelerra_cv/mob.git] / cinelerra / vedit.h
blobefea681ab2fa092501b11ee2a3d3565204ddb990
1 #ifndef VEDIT_H
2 #define VEDIT_H
4 #include "guicast.h"
5 #include "bezierauto.inc"
6 #include "cache.inc"
7 #include "edit.h"
8 #include "vedits.inc"
9 #include "vframe.inc"
11 // UNITS ARE FRAMES
13 class VEdit : public Edit
15 public:
16 VEdit(EDL *edl, Edits *edits);
17 ~VEdit();
23 int read_frame(VFrame *video_out,
24 int64_t input_position,
25 int direction,
26 CICache *cache,
27 int use_nudge,
28 int use_cache);
36 int load_properties_derived(FileXML *xml);
38 // ========================================= editing
40 int copy_properties_derived(FileXML *xml, int64_t length_in_selection);
43 int dump_derived();
44 int64_t get_source_end(int64_t default_);
46 private:
47 VEdits *vedits;
53 #endif