r1006: configure: Use libx264_pic instead of libx264 if available.
[cinelerra_cv/mob.git] / cinelerra / keyframes.h
blobfa0845a0e23f3bb22db6f99f69396f1854a8f1af
1 #ifndef KEYFRAMES_H
2 #define KEYFRAMES_H
4 #include "autos.h"
5 #include "filexml.inc"
6 #include "keyframe.inc"
9 // Keyframes inherit from Autos to reuse the editing commands but
10 // keyframes don't belong to tracks. Instead they belong to plugins
11 // because their data is specific to plugins.
14 class KeyFrames : public Autos
16 public:
17 KeyFrames(EDL *edl, Track *track);
18 ~KeyFrames();
20 Auto* new_auto();
21 void dump();
24 #endif