From baa57c25746b4f16f10b11a00a93423535e49f65 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Mon, 20 Jun 2011 19:44:55 +0000 Subject: [PATCH] Fix proxy triggering duration mismatch (part 2) svn path=/trunk/kdenlive/; revision=5723 --- src/renderer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer.cpp b/src/renderer.cpp index 6fc3a253..7a488673 100644 --- a/src/renderer.cpp +++ b/src/renderer.cpp @@ -616,6 +616,7 @@ void Render::getFileProperties(const QDomElement xml, const QString &clipId, int } if (proxyProducer && xml.hasAttribute("proxy_out")) { + producer->set("length", xml.attribute("proxy_out").toInt() + 1); producer->set("out", xml.attribute("proxy_out").toInt()); if (producer->get_out() != xml.attribute("proxy_out").toInt()) { // Proxy file length is different than original clip length, this will corrupt project so disable this proxy clip -- 2.39.5