X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fclipitem.cpp;h=0b657927c2b1b20d56bbf8382a52525430115bea;hb=880efc8572a7df65453dfb5736de6455fe129a86;hp=0902037f39408b6a9b508bea4abd390017d44664;hpb=a646f250a5cf8f2027d8a2924d12925444e613bc;p=kdenlive diff --git a/src/clipitem.cpp b/src/clipitem.cpp index 0902037f..0b657927 100644 --- a/src/clipitem.cpp +++ b/src/clipitem.cpp @@ -59,20 +59,25 @@ ClipItem::ClipItem(DocClipBase *clip, ItemInfo info, double fps, double speed, i setZValue(2); setRect(0, 0, (info.endPos - info.startPos).frames(fps) - 0.02, (double)(KdenliveSettings::trackheight() - 2)); setPos(info.startPos.frames(fps), (double)(info.track * KdenliveSettings::trackheight()) + 1); + + // set speed independant info + m_speedIndependantInfo = m_info; + m_speedIndependantInfo.cropStart = GenTime((int)(m_info.cropStart.frames(m_fps) * m_speed), m_fps); + m_speedIndependantInfo.cropDuration = GenTime((int)(m_info.cropDuration.frames(m_fps) * m_speed), m_fps); + m_videoPix = KIcon("kdenlive-show-video").pixmap(QSize(16, 16)); m_audioPix = KIcon("kdenlive-show-audio").pixmap(QSize(16, 16)); - if (m_speed == 1.0) m_clipName = clip->name(); + if (m_speed == 1.0) m_clipName = m_clip->name(); else { - m_clipName = clip->name() + " - " + QString::number(m_speed * 100, 'f', 0) + '%'; - m_cropDuration = m_cropDuration * m_speed; + m_clipName = m_clip->name() + " - " + QString::number(m_speed * 100, 'f', 0) + '%'; } - m_producer = clip->getId(); - m_clipType = clip->clipType(); - m_cropStart = info.cropStart; - m_maxDuration = clip->maxDuration(); + m_producer = m_clip->getId(); + m_clipType = m_clip->clipType(); + //m_cropStart = info.cropStart; + m_maxDuration = m_clip->maxDuration(); setAcceptDrops(true); - m_audioThumbReady = clip->audioThumbCreated(); + m_audioThumbReady = m_clip->audioThumbCreated(); //setAcceptsHoverEvents(true); connect(this , SIGNAL(prepareAudioThumb(double, int, int, int)) , this, SLOT(slotPrepareAudioThumb(double, int, int, int))); @@ -84,31 +89,26 @@ ClipItem::ClipItem(DocClipBase *clip, ItemInfo info, double fps, double speed, i m_endThumbTimer.setSingleShot(true); connect(&m_endThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetEndThumb())); - connect(this, SIGNAL(getThumb(int, int)), clip->thumbProducer(), SLOT(extractImage(int, int))); - //connect(this, SIGNAL(getThumb(int, int)), clip->thumbProducer(), SLOT(getVideoThumbs(int, int))); + connect(this, SIGNAL(getThumb(int, int)), m_clip->thumbProducer(), SLOT(extractImage(int, int))); - connect(clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap))); - connect(clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData())); + connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QImage)), this, SLOT(slotThumbReady(int, QImage))); + connect(m_clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData())); if (generateThumbs) QTimer::singleShot(200, this, SLOT(slotFetchThumbs())); - /*if (m_clip->producer()) { - videoThumbProducer.init(this, m_clip->producer(), KdenliveSettings::trackheight() * KdenliveSettings::project_display_ratio(), KdenliveSettings::trackheight()); - slotFetchThumbs(); - }*/ } else if (m_clipType == COLOR) { - QString colour = clip->getProperty("colour"); + QString colour = m_clip->getProperty("colour"); colour = colour.replace(0, 2, "#"); m_baseColor = QColor(colour.left(7)); } else if (m_clipType == IMAGE || m_clipType == TEXT) { m_baseColor = QColor(141, 166, 215); if (m_clipType == TEXT) { - connect(this, SIGNAL(getThumb(int, int)), clip->thumbProducer(), SLOT(extractImage(int, int))); - connect(clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap))); + connect(this, SIGNAL(getThumb(int, int)), m_clip->thumbProducer(), SLOT(extractImage(int, int))); + connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QImage)), this, SLOT(slotThumbReady(int, QImage))); } //m_startPix = KThumb::getImage(KUrl(clip->getProperty("resource")), (int)(KdenliveSettings::trackheight() * KdenliveSettings::project_display_ratio()), KdenliveSettings::trackheight()); } else if (m_clipType == AUDIO) { m_baseColor = QColor(141, 215, 166); - connect(clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData())); + connect(m_clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData())); } } @@ -116,8 +116,9 @@ ClipItem::ClipItem(DocClipBase *clip, ItemInfo info, double fps, double speed, i ClipItem::~ClipItem() { blockSignals(true); + if (scene()) scene()->removeItem(this); if (m_clipType == VIDEO || m_clipType == AV || m_clipType == SLIDESHOW || m_clipType == PLAYLIST) { - disconnect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap))); + disconnect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QImage)), this, SLOT(slotThumbReady(int, QImage))); disconnect(m_clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData())); } delete m_timeLine; @@ -127,9 +128,9 @@ ClipItem *ClipItem::clone(ItemInfo info) const { ClipItem *duplicate = new ClipItem(m_clip, info, m_fps, m_speed, m_strobe); if (m_clipType == IMAGE || m_clipType == TEXT) duplicate->slotSetStartThumb(m_startPix); - else { - if (info.cropStart == m_cropStart) duplicate->slotSetStartThumb(m_startPix); - if (info.cropStart + (info.endPos - info.startPos) == m_cropStart + m_cropDuration) duplicate->slotSetEndThumb(m_endPix); + else if (m_clipType != COLOR) { + if (info.cropStart == m_info.cropStart) duplicate->slotSetStartThumb(m_startPix); + if (info.cropStart + (info.endPos - info.startPos) == m_info.cropStart + (m_info.endPos - m_info.startPos)) duplicate->slotSetEndThumb(m_endPix); } //kDebug() << "// CLoning clip: " << (info.cropStart + (info.endPos - info.startPos)).frames(m_fps) << ", CURRENT end: " << (cropStart() + duration()).frames(m_fps); duplicate->setEffectList(m_effectList); @@ -156,13 +157,18 @@ int ClipItem::selectedEffectIndex() const return m_selectedEffect; } -void ClipItem::initEffect(QDomElement effect) +void ClipItem::initEffect(QDomElement effect, int diff) { // the kdenlive_ix int is used to identify an effect in mlt's playlist, should // not be changed if (effect.attribute("kdenlive_ix").toInt() == 0) effect.setAttribute("kdenlive_ix", QString::number(effectsCounter())); - // init keyframes if required + + if (effect.attribute("id") == "freeze" && diff > 0) { + EffectsList::setParameter(effect, "frame", QString::number(diff)); + } + + // Init parameter value & keyframes if required QDomNodeList params = effect.elementsByTagName("parameter"); for (int i = 0; i < params.count(); i++) { QDomElement e = params.item(i).toElement(); @@ -256,8 +262,8 @@ bool ClipItem::checkKeyFrames() bool modified = false; int lastPos = -1; double lastValue = -1; - int start = m_cropStart.frames(m_fps); - int end = (m_cropStart + m_cropDuration).frames(m_fps); + int start = cropStart().frames(m_fps); + int end = (cropStart() + cropDuration()).frames(m_fps); foreach(const QString &str, keyframes) { int pos = str.section(':', 0, 0).toInt(); double val = str.section(':', 1, 1).toDouble(); @@ -431,14 +437,14 @@ void ClipItem::refreshClip(bool checkDuration) if (checkDuration && (m_maxDuration != m_clip->maxDuration())) { m_maxDuration = m_clip->maxDuration(); if (m_clipType != IMAGE && m_clipType != TEXT && m_clipType != COLOR) { - if (m_maxDuration != GenTime() && m_cropStart + m_cropDuration > m_maxDuration) { + if (m_maxDuration != GenTime() && m_info.cropStart + m_info.cropDuration > m_maxDuration) { // Clip duration changed, make sure to stay in correct range - if (m_cropStart > m_maxDuration) { - m_cropStart = GenTime(); - m_cropDuration = qMin(m_cropDuration, m_maxDuration); + if (m_info.cropStart > m_maxDuration) { + m_info.cropStart = GenTime(); + m_info.cropDuration = qMin(m_info.cropDuration, m_maxDuration); updateRectGeometry(); } else { - m_cropDuration = m_maxDuration; + m_info.cropDuration = m_maxDuration; updateRectGeometry(); } } @@ -453,6 +459,7 @@ void ClipItem::refreshClip(bool checkDuration) void ClipItem::slotFetchThumbs() { + if (scene() == NULL || m_clipType == AUDIO || m_clipType == COLOR) return; if (m_clipType == IMAGE) { if (m_startPix.isNull()) { m_startPix = KThumb::getImage(KUrl(m_clip->getProperty("resource")), (int)(KdenliveSettings::trackheight() * KdenliveSettings::project_display_ratio()), KdenliveSettings::trackheight()); @@ -469,7 +476,7 @@ void ClipItem::slotFetchThumbs() if (m_endPix.isNull() && m_startPix.isNull()) { m_startThumbRequested = true; m_endThumbRequested = true; - emit getThumb((int)cropStart().frames(m_fps), (int)(cropStart() + cropDuration()).frames(m_fps) - 1); + emit getThumb((int)m_speedIndependantInfo.cropStart.frames(m_fps), (int)(m_speedIndependantInfo.cropStart + m_speedIndependantInfo.cropDuration).frames(m_fps) - 1); } else { if (m_endPix.isNull()) { slotGetEndThumb(); @@ -478,35 +485,18 @@ void ClipItem::slotFetchThumbs() slotGetStartThumb(); } } - /* - if (m_hasThumbs) { - if (m_endPix.isNull() && m_startPix.isNull()) { - int frame1 = (int)m_cropStart.frames(m_fps); - int frame2 = (int)(m_cropStart + m_cropDuration).frames(m_fps) - 1; - //videoThumbProducer.setThumbFrames(m_clip->producer(), frame1, frame2); - //videoThumbProducer.start(QThread::LowestPriority); - } else { - if (m_endPix.isNull()) slotGetEndThumb(); - else slotGetStartThumb(); - } - - } else if (m_startPix.isNull()) slotGetStartThumb();*/ } void ClipItem::slotGetStartThumb() { m_startThumbRequested = true; - emit getThumb((int)cropStart().frames(m_fps), -1); - //videoThumbProducer.setThumbFrames(m_clip->producer(), (int)m_cropStart.frames(m_fps), - 1); - //videoThumbProducer.start(QThread::LowestPriority); + emit getThumb((int)m_speedIndependantInfo.cropStart.frames(m_fps), -1); } void ClipItem::slotGetEndThumb() { m_endThumbRequested = true; - emit getThumb(-1, (int)(cropStart() + cropDuration()).frames(m_fps) - 1); - //videoThumbProducer.setThumbFrames(m_clip->producer(), -1, (int)(m_cropStart + m_cropDuration).frames(m_fps) - 1); - //videoThumbProducer.start(QThread::LowestPriority); + emit getThumb(-1, (int)(m_speedIndependantInfo.cropStart + m_speedIndependantInfo.cropDuration).frames(m_fps) - 1); } @@ -532,19 +522,23 @@ void ClipItem::slotSetEndThumb(QImage img) } } -void ClipItem::slotThumbReady(int frame, QPixmap pix) +void ClipItem::slotThumbReady(int frame, QImage img) { if (scene() == NULL) return; QRectF r = boundingRect(); + QPixmap pix = QPixmap::fromImage(img); double width = pix.width() / projectScene()->scale().x(); - if (m_startThumbRequested && frame == cropStart().frames(m_fps)) { + if (m_startThumbRequested && frame == m_speedIndependantInfo.cropStart.frames(m_fps)) { m_startPix = pix; m_startThumbRequested = false; update(r.left(), r.top(), width, pix.height()); - } else if (m_endThumbRequested && frame == (cropStart() + cropDuration()).frames(m_fps) - 1) { + if (m_clipType == IMAGE || m_clipType == TEXT) { + update(r.right() - width, r.top(), width, pix.height()); + } + } else if (m_endThumbRequested && frame == (m_speedIndependantInfo.cropStart + m_speedIndependantInfo.cropDuration).frames(m_fps) - 1) { m_endPix = pix; m_endThumbRequested = false; - update(r.right() - width, r.y(), width, pix.height()); + update(r.right() - width, r.top(), width, pix.height()); } } @@ -630,7 +624,7 @@ void ClipItem::flashClip() //m_timeLine->start(); } -void ClipItem::animate(qreal value) +void ClipItem::animate(qreal /*value*/) { QRectF r = boundingRect(); r.setHeight(20); @@ -700,7 +694,7 @@ void ClipItem::paint(QPainter *painter, int channels = baseClip()->getProperty("channels").toInt(); if (scale != m_framePixelWidth) m_audioThumbCachePic.clear(); - double cropLeft = m_cropStart.frames(m_fps); + double cropLeft = m_info.cropStart.frames(m_fps); const int clipStart = mappedRect.x(); const int mappedStartPixel = painter->matrix().map(QPointF(startpixel + cropLeft, 0)).x() - clipStart; const int mappedEndPixel = painter->matrix().map(QPointF(endpixel + cropLeft, 0)).x() - clipStart; @@ -770,15 +764,16 @@ void ClipItem::paint(QPainter *painter, QPen pen = painter->pen(); pen.setColor(QColor(255, 255, 255, 200)); pen.setStyle(Qt::DotLine); - painter->setPen(pen); + for (; it != markers.end(); ++it) { - pos = (*it).time() / m_speed - cropStart(); + pos = GenTime((int)((*it).time().frames(m_fps) / m_speed + 0.5), m_fps) - cropStart(); if (pos > GenTime()) { if (pos > cropDuration()) break; QLineF l(rect().x() + pos.frames(m_fps), rect().y(), rect().x() + pos.frames(m_fps), rect().bottom()); QLineF l2 = painter->matrix().map(l); //framepos = scale * pos.frames(m_fps); //QLineF l(framepos, 5, framepos, itemHeight - 5); + painter->setPen(pen); painter->drawLine(l2); if (KdenliveSettings::showmarkers()) { framepos = rect().x() + pos.frames(m_fps); @@ -848,14 +843,13 @@ void ClipItem::paint(QPainter *painter, OPERATIONTYPE ClipItem::operationMode(QPointF pos) { if (isItemLocked()) return NONE; - + const double scale = projectScene()->scale().x(); + double maximumOffset = 6 / scale; if (isSelected() || (parentItem() && parentItem()->isSelected())) { - m_editedKeyframe = mouseOverKeyFrames(pos); + m_editedKeyframe = mouseOverKeyFrames(pos, maximumOffset); if (m_editedKeyframe != -1) return KEYFRAME; } QRectF rect = sceneBoundingRect(); - const double scale = projectScene()->scale().x(); - double maximumOffset = 6 / scale; int addtransitionOffset = 10; // Don't allow add transition if track height is very small if (rect.height() < 30) addtransitionOffset = 0; @@ -892,7 +886,8 @@ QList ClipItem::snapMarkers() const GenTime pos; for (int i = 0; i < markers.size(); i++) { - pos = markers.at(i) / m_speed - cropStart(); + + pos = GenTime((int)(markers.at(i).frames(m_fps) / m_speed + 0.5), m_fps) - cropStart(); if (pos > GenTime()) { if (pos > cropDuration()) break; else snaps.append(pos + startPos()); @@ -908,7 +903,7 @@ QList ClipItem::commentedSnapMarkers() const GenTime pos; for (int i = 0; i < markers.size(); i++) { - pos = markers.at(i).time() / m_speed - cropStart(); + pos = GenTime((int)(markers.at(i).time().frames(m_fps) / m_speed + 0.5), m_fps) - cropStart(); if (pos > GenTime()) { if (pos > cropDuration()) break; else snaps.append(CommentedTime(pos + startPos(), markers.at(i).comment())); @@ -1018,7 +1013,7 @@ void ClipItem::setFadeIn(int pos) if (pos == m_startFade) return; int oldIn = m_startFade; if (pos < 0) pos = 0; - if (pos > m_cropDuration.frames(m_fps)) pos = (int)(m_cropDuration.frames(m_fps)); + if (pos > cropDuration().frames(m_fps)) pos = (int)(cropDuration().frames(m_fps)); m_startFade = pos; QRectF rect = boundingRect(); update(rect.x(), rect.y(), qMax(oldIn, pos), rect.height()); @@ -1029,7 +1024,7 @@ void ClipItem::setFadeOut(int pos) if (pos == m_endFade) return; int oldOut = m_endFade; if (pos < 0) pos = 0; - if (pos > m_cropDuration.frames(m_fps)) pos = (int)(m_cropDuration.frames(m_fps)); + if (pos > cropDuration().frames(m_fps)) pos = (int)(cropDuration().frames(m_fps)); m_endFade = pos; QRectF rect = boundingRect(); update(rect.x() + rect.width() - qMax(oldOut, pos), rect.y(), qMax(oldOut, pos), rect.height()); @@ -1066,33 +1061,42 @@ void ClipItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *) } */ -void ClipItem::resizeStart(int posx, double /*speed*/) +void ClipItem::resizeStart(int posx) { const int min = (startPos() - cropStart()).frames(m_fps); if (posx < min) posx = min; if (posx == startPos().frames(m_fps)) return; const int previous = cropStart().frames(m_fps); - AbstractClipItem::resizeStart(posx, m_speed); + AbstractClipItem::resizeStart(posx); + + // set speed independant info + m_speedIndependantInfo = m_info; + m_speedIndependantInfo.cropStart = GenTime((int)(m_info.cropStart.frames(m_fps) * m_speed), m_fps); + m_speedIndependantInfo.cropDuration = GenTime((int)(m_info.cropDuration.frames(m_fps) * m_speed), m_fps); + if ((int) cropStart().frames(m_fps) != previous) { if (m_hasThumbs && KdenliveSettings::videothumbnails()) { - /*connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));*/ m_startThumbTimer.start(150); } } } -void ClipItem::resizeEnd(int posx, double /*speed*/) +void ClipItem::resizeEnd(int posx) { const int max = (startPos() - cropStart() + maxDuration()).frames(m_fps); if (posx > max && maxDuration() != GenTime()) posx = max; if (posx == endPos().frames(m_fps)) return; //kDebug() << "// NEW POS: " << posx << ", OLD END: " << endPos().frames(m_fps); - const int previous = (int)(cropStart() + cropDuration()).frames(m_fps) - 1; - AbstractClipItem::resizeEnd(posx, m_speed); - const int current = (int)(cropStart() + cropDuration()).frames(m_fps) - 1; - if (current != previous) { + const int previous = cropDuration().frames(m_fps); + AbstractClipItem::resizeEnd(posx); + + // set speed independant info + m_speedIndependantInfo = m_info; + m_speedIndependantInfo.cropStart = GenTime((int)(m_info.cropStart.frames(m_fps) * m_speed), m_fps); + m_speedIndependantInfo.cropDuration = GenTime((int)(m_info.cropDuration.frames(m_fps) * m_speed), m_fps); + + if ((int) cropDuration().frames(m_fps) != previous) { if (m_hasThumbs && KdenliveSettings::videothumbnails()) { - /*connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));*/ m_endThumbTimer.start(150); } } @@ -1161,7 +1165,9 @@ QVariant ClipItem::itemChange(GraphicsItemChange change, const QVariant &value) // Only one clip is moving QRectF sceneShape = rect(); sceneShape.translate(newPos); - QList items = scene()->items(sceneShape, Qt::IntersectsItemShape); + QList items; + if (projectScene()->editMode() == NORMALEDIT) + items = scene()->items(sceneShape, Qt::IntersectsItemShape); items.removeAll(this); bool forwardMove = newPos.x() > pos().x(); int offset = 0; @@ -1191,20 +1197,20 @@ QVariant ClipItem::itemChange(GraphicsItemChange change, const QVariant &value) subitems.removeAll(this); for (int j = 0; j < subitems.count(); j++) { if (subitems.at(j)->type() == type()) { - m_startPos = GenTime((int) pos().x(), m_fps); + m_info.startPos = GenTime((int) pos().x(), m_fps); return pos(); } } } - m_track = newTrack; - m_startPos = GenTime((int) newPos.x(), m_fps); + m_info.track = newTrack; + m_info.startPos = GenTime((int) newPos.x(), m_fps); return newPos; } } } - m_track = newTrack; - m_startPos = GenTime((int) newPos.x(), m_fps); + m_info.track = newTrack; + m_info.startPos = GenTime((int) newPos.x(), m_fps); //kDebug()<<"// ITEM NEW POS: "< (m_effectList.count() - 1)) { + if (ix < 0 || ix > (m_effectList.count() - 1) || effect.isNull()) { kDebug() << "Invalid effect index: " << ix; return; } @@ -1267,11 +1273,14 @@ void ClipItem::setEffectAt(int ix, QDomElement effect) } } -EffectsParameterList ClipItem::addEffect(const QDomElement effect, bool animate) +EffectsParameterList ClipItem::addEffect(const QDomElement effect, bool /*animate*/) { bool needRepaint = false; - int ix = effect.attribute("kdenlive_ix").toInt(); - if (ix <= m_effectList.count()) { + int ix; + if (!effect.hasAttribute("kdenlive_ix")) { + ix = effectsCounter(); + } else ix = effect.attribute("kdenlive_ix").toInt(); + if (!m_effectList.isEmpty() && ix <= m_effectList.count()) { needRepaint = true; m_effectList.insert(ix - 1, effect); for (int i = ix; i < m_effectList.count(); i++) { @@ -1361,9 +1370,10 @@ EffectsParameterList ClipItem::addEffect(const QDomElement effect, bool animate) m_effectNames = m_effectList.effectNames().join(" / "); if (fade > 0) m_startFade = fade; else if (fade < 0) m_endFade = -fade; + if (m_selectedEffect == -1) { setSelectedEffect(0); - } + } else if (m_selectedEffect == ix - 1) setSelectedEffect(m_selectedEffect); if (needRepaint) update(boundingRect()); /*if (animate) { flashClip(); @@ -1450,6 +1460,7 @@ void ClipItem::deleteEffect(QString index) } } m_effectNames = m_effectList.effectNames().join(" / "); + if (m_effectList.isEmpty() || m_selectedEffect + 1 == index.toInt()) { // Current effect was removed if (index.toInt() > m_effectList.count() - 1) { @@ -1457,7 +1468,12 @@ void ClipItem::deleteEffect(QString index) } else setSelectedEffect(index.toInt()); } if (needRepaint) update(boundingRect()); - if (!m_effectList.isEmpty()) flashClip(); + else { + QRectF r = boundingRect(); + r.setHeight(20); + update(r); + } + //if (!m_effectList.isEmpty()) flashClip(); } double ClipItem::speed() const @@ -1476,27 +1492,30 @@ void ClipItem::setSpeed(const double speed, const int strobe) m_strobe = strobe; if (m_speed == 1.0) m_clipName = baseClip()->name(); else m_clipName = baseClip()->name() + " - " + QString::number(speed * 100, 'f', 0) + '%'; + m_info.cropStart = GenTime((int)(m_speedIndependantInfo.cropStart.frames(m_fps) / m_speed + 0.5), m_fps); + m_info.cropDuration = GenTime((int)(m_speedIndependantInfo.cropDuration.frames(m_fps) / m_speed + 0.5), m_fps); //update(); } GenTime ClipItem::maxDuration() const { - return m_maxDuration / m_speed; + return GenTime((int)(m_maxDuration.frames(m_fps) / m_speed + 0.5), m_fps); } -GenTime ClipItem::cropStart() const +GenTime ClipItem::speedIndependantCropStart() const { - return m_cropStart / m_speed; + return m_speedIndependantInfo.cropStart; } -GenTime ClipItem::cropDuration() const +GenTime ClipItem::speedIndependantCropDuration() const { - return m_cropDuration / m_speed; + return m_speedIndependantInfo.cropDuration; } -GenTime ClipItem::endPos() const + +const ItemInfo ClipItem::speedIndependantInfo() const { - return m_startPos + cropDuration(); + return m_speedIndependantInfo; } //virtual @@ -1509,7 +1528,7 @@ void ClipItem::dropEvent(QGraphicsSceneDragDropEvent * event) if (scene() && !scene()->views().isEmpty()) { event->accept(); CustomTrackView *view = (CustomTrackView *) scene()->views()[0]; - if (view) view->slotAddEffect(e, m_startPos, track()); + if (view) view->slotAddEffect(e, m_info.startPos, track()); } } @@ -1543,7 +1562,14 @@ void ClipItem::setAudioOnly(bool force) { m_audioOnly = force; if (m_audioOnly) m_baseColor = QColor(141, 215, 166); - else m_baseColor = QColor(141, 166, 215); + else { + if (m_clipType == COLOR) { + QString colour = m_clip->getProperty("colour"); + colour = colour.replace(0, 2, "#"); + m_baseColor = QColor(colour.left(7)); + } else if (m_clipType == AUDIO) m_baseColor = QColor(141, 215, 166); + else m_baseColor = QColor(141, 166, 215); + } m_audioThumbCachePic.clear(); }