]> git.sesse.net Git - mlt/blobdiff - src/modules/opengl/filter_movit_glow.cpp
Hide the movit.parms properties from serialization.
[mlt] / src / modules / opengl / filter_movit_glow.cpp
index d1a5bb5d34a24b876777a9b59862c76447eae3be..4ee0f8589a97eea893f2e58ea48a6afc6a0d56f5 100644 (file)
@@ -33,11 +33,11 @@ static int get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format
        mlt_position position = mlt_filter_get_position( filter, frame );
        mlt_position length = mlt_filter_get_length2( filter, frame );
        GlslManager::get_instance()->lock_service( frame );
-       mlt_properties_set_double( properties, "movit.parms.float.radius",
+       mlt_properties_set_double( properties, "_movit.parms.float.radius",
                mlt_properties_anim_get_double( properties, "radius", position, length ) );
-       mlt_properties_set_double( properties, "movit.parms.float.blurred_mix_amount",
+       mlt_properties_set_double( properties, "_movit.parms.float.blurred_mix_amount",
                mlt_properties_anim_get_double( properties, "blur_mix", position, length ) );
-       mlt_properties_set_double( properties, "movit.parms.float.highlight_cutoff",
+       mlt_properties_set_double( properties, "_movit.parms.float.highlight_cutoff",
                mlt_properties_anim_get_double( properties, "highlight_cutoff", position, length ) );
        GlslManager::get_instance()->unlock_service( frame );
        *format = mlt_image_glsl;