]> git.sesse.net Git - kdenlive/blobdiff - src/definitions.h
Fix various speed related issues
[kdenlive] / src / definitions.h
index 90d5e31364ee4f2c29bc9812f30f977154b857f5..c8725fc0b00de5367ee976593e5990adda87c55a 100644 (file)
@@ -62,9 +62,16 @@ struct TrackInfo {
 };
 
 struct ItemInfo {
+    /** startPos is the position where the clip starts on the track */
     GenTime startPos;
+    /** endPos is the duration where the clip ends on the track */
     GenTime endPos;
+    /** cropStart is the position where the sub-clip starts, relative to the clip's 0 position. Doe not depend on speed */
+    GenTime originalcropStart;
+    /** adjustedCropStart is the position where the sub-clip starts, depend on effects (speed,...) */
     GenTime cropStart;
+    /** cropDuration is the position where the sub-clip ends, relative to the clip's 0 position. Doe not depend on speed */
+    GenTime cropDuration;
     int track;
 };