From c54a5c51667c3f83bdfe951574e3dff768284455 Mon Sep 17 00:00:00 2001 From: ddennedy Date: Sun, 9 Nov 2008 05:30:39 +0000 Subject: [PATCH] filter_affine.c: bugfix (kdenlive-235) rendering when used inside a multitrack. git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@1232 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/plus/filter_affine.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/modules/plus/filter_affine.c b/src/modules/plus/filter_affine.c index 0f28ed5..8a20753 100644 --- a/src/modules/plus/filter_affine.c +++ b/src/modules/plus/filter_affine.c @@ -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 ) -- 1.7.4.4