Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / cinelerra / vautomation.h
blobf04eb8c631a8ea80094d129c401dfe7c6f1a339d
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