]> git.sesse.net Git - kdenlive/blobdiff - src/abstractclipitem.h
- Fix resize start allowing to go further than duration = 0 (inverted the clip)
[kdenlive] / src / abstractclipitem.h
index dde3adfddefd840329edc82fa6444d2129578e9a..f36c71f59aa8c0f4cd04b778e8310d0fc6620224 100644 (file)
@@ -69,7 +69,14 @@ public:
     virtual int track() const ;
     virtual GenTime cropStart() const ;
     virtual GenTime cropDuration() const ;
+
+    /** @brief Resizes the clip from the start.
+    * @param posx Absolute position of new in point
+    * @param hasSizeLimit (optional) Whether the clip has a maximum size */
     virtual void resizeStart(int posx, bool hasSizeLimit = true);
+
+    /** @brief Resizes the clip from the end.
+    * @param posx Absolute position of new out point */
     virtual void resizeEnd(int posx);
     virtual double fps() const;
     virtual void updateFps(double fps);