Apply cosmetic cleanup part of ldflags_order patch from Alberto Villa.
[melted] / src / modules / plus / filter_affine.c
index 0f28ed5..cbf6caa 100644 (file)
@@ -37,7 +37,7 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *
        mlt_properties properties = MLT_FILTER_PROPERTIES( filter );
 
        // Get the image
-       int error = mlt_frame_get_image( this, image, format, width, height, 0 );
+       int error = 0; //mlt_frame_get_image( this, image, format, width, height, 0 );
 
        // Only process if we have no error and a valid colour space
        if ( error == 0 && *format == mlt_image_yuv422 )
@@ -126,7 +126,6 @@ mlt_filter filter_affine_init( mlt_profile profile, mlt_service_type type, const
        {
                this->process = filter_process;
                mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "background", "colour:black" );
-               mlt_properties_set( MLT_FILTER_PROPERTIES( this ), "transition.rotate_x", "10" );
        }
        return this;
 }