]> git.sesse.net Git - mlt/commitdiff
filter_affine.c: bugfix (kdenlive-235) rendering when used inside a multitrack.
authorddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Sun, 9 Nov 2008 05:30:39 +0000 (05:30 +0000)
committerddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Sun, 9 Nov 2008 05:30:39 +0000 (05:30 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1232 d19143bc-622f-0410-bfdd-b5b2a6649095

src/modules/plus/filter_affine.c

index 0f28ed59d26fb3d74ceb8b8db647068c14a3f06e..8a2075390812244dad563f0a3ed4b220e924359e 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 )