]> 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 5c66e97697c6f3a7de129a1bd7a8e807cd4ab206..c939e18d3fd63072f65356bd77200cd83021f8a6 100644 (file)
 #include <string.h>
 #include <assert.h>
 
-#include "glsl_manager.h"
+#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 );
+       mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
+       GlslManager::get_instance()->lock_service( frame );
+       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",
+               radius );
+       GlslManager::get_instance()->unlock_service( frame );
+       *format = mlt_image_glsl;
+       int error = mlt_frame_get_image( frame, image, format, width, height, writable );
+       GlslManager::set_effect_input( MLT_FILTER_SERVICE( filter ), frame, (mlt_service) *image );
+       GlslManager::set_effect( MLT_FILTER_SERVICE( filter ), frame, new BlurEffect );
+       *image = (uint8_t *) MLT_FILTER_SERVICE( filter );
+       return error;
+}
+
 static mlt_frame process( mlt_filter filter, mlt_frame frame )
 {
-       if ( !mlt_frame_is_test_card( frame ) ) {
-               Effect* effect = GlslManager::get_effect( filter, frame );
-               if ( !effect )
-                       effect = GlslManager::add_effect( filter, frame, new BlurEffect() );
-               if ( effect ) {
-                       mlt_properties filter_props = MLT_FILTER_PROPERTIES( filter );
-                       bool ok = effect->set_float( "radius", mlt_properties_get_double( filter_props, "radius" ) );
-                       assert(ok);
-               }
-       }
+       mlt_frame_push_service( frame, filter );
+       mlt_frame_push_get_image( frame, get_image );
        return frame;
 }
 
@@ -48,6 +61,7 @@ mlt_filter filter_movit_blur_init( mlt_profile profile, mlt_service_type type, c
 
        if ( glsl && ( filter = mlt_filter_new() ) ) {
                mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
+               glsl->add_ref( properties );
                mlt_properties_set_double( properties, "radius", 3 );
                filter->process = process;
        }