SDL Preview provisional checkin
[melted] / src / modules / plus / filter_affine.c
index a37b066..f3d0b6b 100644 (file)
@@ -62,11 +62,15 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *
 
                if ( producer != NULL && transition != NULL )
                {
+                       char *name = mlt_properties_get( properties, "_unique_id" );
+                       mlt_position position = mlt_properties_get_position( mlt_frame_properties( this ), name );
                        mlt_properties frame_properties = mlt_frame_properties( this );
+                       mlt_producer_seek( producer, position );
+                       mlt_frame_set_position( this, position );
                        mlt_properties_pass( mlt_producer_properties( producer ), properties, "producer." );
                        mlt_properties_pass( mlt_transition_properties( transition ), properties, "transition." );
                        mlt_service_get_frame( mlt_producer_service( producer ), &a_frame, 0 );
-                       mlt_properties_set( mlt_frame_properties( a_frame ), "rescale_interp", "nearest" );
+                       mlt_properties_set( mlt_frame_properties( a_frame ), "rescale.interp", "nearest" );
                        mlt_properties_set( mlt_frame_properties( a_frame ), "distort", "true" );
                        mlt_properties_set_double( mlt_frame_properties( a_frame ), "consumer_aspect_ratio", 
                                                                           mlt_properties_get_double( frame_properties, "consumer_aspect_ratio" ) );
@@ -85,9 +89,19 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *
 
 static mlt_frame filter_process( mlt_filter this, mlt_frame frame )
 {
+       // Get the properties of the frame
+       mlt_properties properties = mlt_frame_properties( frame );
+
+       // Get a unique name to store the frame position
+       char *name = mlt_properties_get( mlt_filter_properties( this ), "_unique_id" );
+
+       // Assign the current position to the name
+       mlt_properties_set_position( properties, name, mlt_frame_get_position( frame ) - mlt_filter_get_in( this ) );
+
        // Push the frame filter
        mlt_frame_push_service( frame, this );
        mlt_frame_push_get_image( frame, filter_get_image );
+
        return frame;
 }
 
@@ -101,7 +115,7 @@ mlt_filter filter_affine_init( char *arg )
        {
                this->process = filter_process;
                mlt_properties_set( mlt_filter_properties( this ), "background", "colour:black" );
-               mlt_properties_set( mlt_filter_properties( this ), "transition.rotate", "10" );
+               mlt_properties_set( mlt_filter_properties( this ), "transition.rotate_x", "10" );
        }
        return this;
 }