X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fplus%2Ffilter_affine.c;h=cbf6caac073926fbfaa5d63a17a46c87335f2b49;hb=e89b21b07607ae485f56b32f3e67f83f528f2ae6;hp=0f28ed59d26fb3d74ceb8b8db647068c14a3f06e;hpb=d33f444d4ef4c7bc4074d07a49eca0ab7d108394;p=melted diff --git a/src/modules/plus/filter_affine.c b/src/modules/plus/filter_affine.c index 0f28ed5..cbf6caa 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 ) @@ -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; }