]> git.sesse.net Git - kdenlive/commitdiff
Fix last keyframe for composite transition (and other geometry effects) inserted...
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Thu, 7 Jul 2011 16:39:40 +0000 (16:39 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Thu, 7 Jul 2011 16:39:40 +0000 (16:39 +0000)
svn path=/trunk/kdenlive/; revision=5774

src/documentvalidator.cpp
src/effectstackedit.cpp

index e34b0d0dfb6834702f38823899914506803232cd..44fd3a41b43d2ba8428dfddc8c3c025e2576580c 100644 (file)
@@ -29,6 +29,8 @@
 #include <QFile>
 #include <QColor>
 
+#include <mlt++/Mlt.h>
+
 
 DocumentValidator::DocumentValidator(QDomDocument doc):
         m_doc(doc),
@@ -847,6 +849,43 @@ bool DocumentValidator::upgrade(double version, const double currentVersion)
             if (EffectsList::property(prod, "mlt_service") == "avformat-novalidate")
                 EffectsList::setProperty(prod, "mlt_service", "avformat");
         }
+
+        // There was a mistake in Geometry transitions where the last keyframe was created one frame after the end of transition, so fix it and move last keyframe to real end of transition
+
+        // Get profile info (width / height)
+        int profileWidth;
+        int profileHeight;
+        QDomElement profile = m_doc.firstChildElement("profile");
+        if (profile.isNull()) profile = infoXml.firstChildElement("profileinfo");
+        if (profile.isNull()) {
+            // could not find profile info, set PAL
+            profileWidth = 720;
+            profileHeight = 576;
+        }
+        else {
+            profileWidth = profile.attribute("width").toInt();
+            profileHeight = profile.attribute("height").toInt();
+        }
+        QDomNodeList transitions = m_doc.elementsByTagName("transition");
+        max = transitions.count();
+        int out;
+        for (int i = 0; i < max; i++) {
+            QDomElement trans = transitions.at(i).toElement();
+            out = trans.attribute("out").toInt() - trans.attribute("in").toInt();
+            QString geom = EffectsList::property(trans, "geometry");
+            Mlt::Geometry *g = new Mlt::Geometry(geom.toUtf8().data(), out, profileWidth, profileHeight);
+            Mlt::GeometryItem item;
+            if (g->next_key(&item, out) == 0) {
+                // We have a keyframe just after last frame, try to move it to last frame
+                if (item.frame() == out + 1) {
+                    item.frame(out);
+                    g->insert(item);
+                    g->remove(out + 1);
+                    EffectsList::setProperty(trans, "geometry", g->serialise());
+                }
+            }
+            delete g;
+        }
     }
 
     // The document has been converted: mark it as modified
index 10fd9e22e44b4f52f39c8e54a5bbcd90470cb65e..3d4a481f81791c64b5c73849b51168b5d46a0774 100644 (file)
@@ -233,8 +233,10 @@ void EffectStackEdit::transferParamDesc(const QDomElement d, ItemInfo info, bool
     }
 #endif
     QDomElement e = m_params.toElement();
-    const int minFrame = e.attribute("start").toInt();
-    const int maxFrame = e.attribute("end").toInt();
+    int minFrame = e.attribute("start").toInt();
+    int maxFrame = e.attribute("end").toInt();
+    // In transitions, maxFrame is in fact one frame after the end of transition
+    if (maxFrame > 0) maxFrame --;
 
     bool disable = d.attribute("disable") == "1" && KdenliveSettings::disable_effect_parameters();
     setEnabled(!disable);