]> git.sesse.net Git - mlt/blobdiff - src/modules/opengl/filter_movit_crop.cpp
Hide the movit.parms properties from serialization.
[mlt] / src / modules / opengl / filter_movit_crop.cpp
index 0dee4b9ca56aa990c7dee88c95dba6bec38e537e..15a0c7af4e229ad0a9ab7888af568f42c1793e76 100644 (file)
@@ -78,13 +78,13 @@ static int get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format
 
                mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
                GlslManager::get_instance()->lock_service( frame );
-               mlt_properties_set_int( properties, "movit.parms.int.width", owidth );
-               mlt_properties_set_int( properties, "movit.parms.int.height", oheight );
-               mlt_properties_set_double( properties, "movit.parms.float.left", -left );
-               mlt_properties_set_double( properties, "movit.parms.float.top", -top );
+               mlt_properties_set_int( properties, "_movit.parms.int.width", owidth );
+               mlt_properties_set_int( properties, "_movit.parms.int.height", oheight );
+               mlt_properties_set_double( properties, "_movit.parms.float.left", -left );
+               mlt_properties_set_double( properties, "_movit.parms.float.top", -top );
 
                bool disable = ( *width == owidth && *height == oheight );
-               mlt_properties_set_int( properties, "movit.parms.int.disable", disable );
+               mlt_properties_set_int( properties, "_movit.parms.int.disable", disable );
 
                GlslManager::get_instance()->unlock_service( frame );
        }