From: Jean-Baptiste Mardelle Date: Sat, 13 Dec 2008 19:16:44 +0000 (+0000) Subject: Less debug X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=3c60d4194a2549e556152989ee3ef32be5829d5b;p=kdenlive Less debug svn path=/branches/KDE4/; revision=2787 --- diff --git a/src/abstractclipitem.cpp b/src/abstractclipitem.cpp index eca35ba0..3ec2abf6 100644 --- a/src/abstractclipitem.cpp +++ b/src/abstractclipitem.cpp @@ -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()) {