]> git.sesse.net Git - kdenlive/blobdiff - src/kis_cubic_curve.cpp
Integrate with the required MLT hooks for getting Movit to work.
[kdenlive] / src / kis_cubic_curve.cpp
index 52488a6294fc196e8cae4e03c2d5056ca7e2325d..128cde9b3dfef246938db50b5309de7900b6926e 100644 (file)
@@ -94,7 +94,7 @@ public:
                    /
                    (b.last() + a.last() * alpha.last());
 
-        for (i = size - 2; i >= 0; i--)
+        for (i = size - 2; i >= 0; --i)
             x[i] = alpha[i+1] * x[i+1] + beta[i+1];
 
         return x;