]> git.sesse.net Git - kdenlive/commitdiff
Crop is done on the source resolution. Therefore, it should not be
authorDan Dennedy <dan@dennedy.org>
Wed, 2 Dec 2009 06:47:58 +0000 (06:47 +0000)
committerDan Dennedy <dan@dennedy.org>
Wed, 2 Dec 2009 06:47:58 +0000 (06:47 +0000)
limited to the project setting resolution. This was always the case for
video clips, but MLT was recently fixed to correctly crop against the
native source resolution for image files and sequences.

svn path=/trunk/kdenlive/; revision=4168

effects/crop.xml

index 84256cb6868915080d4b6a66833b19007670e75e..a1678a698435579b22b16d34359976d3e08e2cc4 100644 (file)
@@ -3,16 +3,16 @@
        <name>Crop</name>
        <description>Trim the edges of a clip</description>
        <author>Dan Dennedy</author>
-       <parameter type="constant" name="top" max="%height-1" min="0" default="0">
+       <parameter type="constant" name="top" max="5000" min="0" default="0">
                <name>Top</name>
        </parameter>
-       <parameter type="constant" name="left" max="%width" min="0" default="0">
+       <parameter type="constant" name="left" max="5000" min="0" default="0">
                <name>Left</name>
        </parameter>
-       <parameter type="constant" name="bottom" max="%height-1" min="0" default="0">
+       <parameter type="constant" name="bottom" max="5000" min="0" default="0">
                <name>Bottom</name>
        </parameter>
-       <parameter type="constant" name="right" max="%width" min="0" default="0">
+       <parameter type="constant" name="right" max="5000" min="0" default="0">
                <name>Right</name>
        </parameter>
 </effect>