]> git.sesse.net Git - kdenlive/commitdiff
Less debug
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Sat, 13 Dec 2008 19:16:44 +0000 (19:16 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Sat, 13 Dec 2008 19:16:44 +0000 (19:16 +0000)
svn path=/branches/KDE4/; revision=2787

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()) {