]> git.sesse.net Git - kdenlive/blobdiff - src/definitions.h
Initial support for keyframes in track effects (WIP)
[kdenlive] / src / definitions.h
index 33bffbd447ad3aa0a0bb07eb435009da80ecb195..fd63c745b81aaeb9a72bad9b5837c947f99d259c 100644 (file)
@@ -65,6 +65,7 @@ struct TrackInfo {
     bool isBlind;
     bool isLocked;
     EffectsList effectsList;
+    int duration;
 };
 
 struct ItemInfo {
@@ -91,6 +92,7 @@ struct MltVideoProfile {
     int sample_aspect_den;
     int display_aspect_num;
     int display_aspect_den;
+    int colorspace;
 };
 
 
@@ -149,7 +151,7 @@ class CommentedTime
 public:
     CommentedTime(): t(GenTime(0)) {}
     CommentedTime(const GenTime time, QString comment)
-            : t(time), c(comment) { }
+        : t(time), c(comment) { }
 
     QString comment()   const          {
         return (c.isEmpty() ? i18n("Marker") : c);