]> git.sesse.net Git - kdenlive/blobdiff - src/abstractclipitem.cpp
Less debug
[kdenlive] / src / abstractclipitem.cpp
index eca35ba0d949d0da321560146b09d56fc112becf..3ec2abf617a506a0e2d1aee00fcd0f5be4477124 100644 (file)
@@ -125,8 +125,7 @@ void AbstractClipItem::resizeStart(int posx, double speed) {
 void AbstractClipItem::resizeEnd(int posx, double speed, bool updateKeyFrames) {
     GenTime durationDiff = GenTime(posx, m_fps) - endPos();
     if (durationDiff == GenTime()) return;
-    //kDebug() << "-- RESCALE: CROP=" << m_cropStart << ", DIFF = " << durationDiff;
-    kDebug() << "// DUR DIFF1:" << durationDiff.frames(25) << ", ADJUSTED: " << durationDiff.frames(25) * speed << ", SPED:" << speed;
+    //kDebug() << "// DUR DIFF1:" << durationDiff.frames(25) << ", ADJUSTED: " << durationDiff.frames(25) * speed << ", SPED:" << speed;
     if (cropDuration() + durationDiff <= GenTime()) {
         durationDiff = GenTime() - (cropDuration() - GenTime(3, m_fps));
     } else if (cropStart() + cropDuration() + durationDiff >= maxDuration()) {