]> git.sesse.net Git - mlt/blobdiff - src/modules/opengl/filter_movit_blur.cpp
Hide the movit.parms properties from serialization.
[mlt] / src / modules / opengl / filter_movit_blur.cpp
index e89a09daf61cb39dff799105704beacacd798ff7..c939e18d3fd63072f65356bd77200cd83021f8a6 100644 (file)
@@ -24,6 +24,8 @@
 #include "filter_glsl_manager.h"
 #include <movit/blur_effect.h>
 
+using namespace movit;
+
 static int get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format, int *width, int *height, int writable )
 {
        mlt_filter filter = (mlt_filter) mlt_frame_pop_service( frame );
@@ -32,7 +34,7 @@ static int get_image( mlt_frame frame, uint8_t **image, mlt_image_format *format
        double radius = mlt_properties_anim_get_double( properties, "radius",
                mlt_filter_get_position( filter, frame ),
                mlt_filter_get_length2( filter, frame ) );
-       mlt_properties_set_double( properties, "movit.parms.float.radius",
+       mlt_properties_set_double( properties, "_movit.parms.float.radius",
                radius );
        GlslManager::get_instance()->unlock_service( frame );
        *format = mlt_image_glsl;