]> git.sesse.net Git - kdenlive/blobdiff - src/definitions.h
Add OnMonitorRectItem to separate rect move and resize code from MonitorScene
[kdenlive] / src / definitions.h
index 33bffbd447ad3aa0a0bb07eb435009da80ecb195..f67c473608d0b7886467d61fdd63301bf067f46d 100644 (file)
@@ -91,6 +91,7 @@ struct MltVideoProfile {
     int sample_aspect_den;
     int display_aspect_num;
     int display_aspect_den;
+    int colorspace;
 };
 
 
@@ -149,7 +150,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);