]> git.sesse.net Git - kdenlive/blobdiff - src/definitions.h
Fetch timeline thumbnails in a different thread to improve workflow
[kdenlive] / src / definitions.h
index eff9b24e99f0f7c5b1bff59236089fde7aa638cf..7b72a88adc108083b6aee7bb74c9ba85f6b4ef02 100644 (file)
@@ -55,15 +55,21 @@ enum TRACKTYPE { AUDIOTRACK = 0, VIDEOTRACK = 1 };
 
 struct TrackInfo {
     TRACKTYPE type;
+    QString trackName;
     bool isMute;
     bool isBlind;
     bool isLocked;
 };
 
 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 */
     GenTime cropStart;
+    /** cropDuration is the duration of the clip */
+    GenTime cropDuration;
     int track;
 };