Merge branch 'master' of git://git.pipapo.org/cinelerra/svn into ct
[cinelerra_cv/ct.git] / cinelerra / vautomation.h
blob3b554e9ad59598496222cc4b66655d357a572d59
1 #ifndef VAUTOMATION_H
2 #define VAUTOMATION_H
4 #include "automation.h"
5 #include "edl.inc"
6 #include "track.inc"
8 class VAutomation : public Automation
10 public:
11 VAutomation(EDL *edl, Track *track);
12 ~VAutomation();
14 int create_objects();
15 void get_projector(float *x,
16 float *y,
17 float *z,
18 int64_t position,
19 int direction);
20 // Get camera coordinates if this is video automation
21 void get_camera(float *x,
22 float *y,
23 float *z,
24 int64_t position,
25 int direction);
27 int direct_copy_possible(int64_t start, int direction);
31 #endif
33 // Local Variables:
34 // mode: C++
35 // c-file-style: "linux"
36 // End: