17 Auto::Auto(EDL *edl, Autos *autos)
29 Auto& Auto::operator=(Auto& that)
35 int Auto::operator==(Auto &that)
37 printf("Auto::operator== called\n");
41 void Auto::copy(int64_t start, int64_t end, FileXML *file, int default_only)
43 printf("Auto::copy called\n");
46 void Auto::copy_from(Auto *that)
48 this->position = that->position;
51 int Auto::interpolate_from(Auto *a1, Auto *a2, int64_t position)
57 void Auto::load(FileXML *xml)
59 printf("Auto::load\n");
64 float Auto::value_to_percentage()
69 float Auto::invalue_to_percentage()
74 float Auto::outvalue_to_percentage()