From: ddennedy Date: Fri, 1 Jun 2007 08:20:03 +0000 (+0000) Subject: bugfix tractor not propogating resize_alpha frame property X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=6faffae447b342b5e0c9424c5e0b9207a0fae4df;p=melted bugfix tractor not propogating resize_alpha frame property git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@975 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/framework/mlt_tractor.c b/src/framework/mlt_tractor.c index 45caa62..0d47b3f 100644 --- a/src/framework/mlt_tractor.c +++ b/src/framework/mlt_tractor.c @@ -205,7 +205,7 @@ static int producer_get_image( mlt_frame this, uint8_t **buffer, mlt_image_forma mlt_frame frame = mlt_frame_pop_service( this ); mlt_properties frame_properties = MLT_FRAME_PROPERTIES( frame ); mlt_properties_set( frame_properties, "rescale.interp", mlt_properties_get( properties, "rescale.interp" ) ); - mlt_properties_set_int( frame_properties, "rescale_alpha", mlt_properties_get_int( properties, "resize_alpha" ) ); + mlt_properties_set_int( frame_properties, "resize_alpha", mlt_properties_get_int( properties, "resize_alpha" ) ); mlt_properties_set_int( frame_properties, "distort", mlt_properties_get_int( properties, "distort" ) ); mlt_properties_set_double( frame_properties, "consumer_aspect_ratio", mlt_properties_get_double( properties, "consumer_aspect_ratio" ) ); mlt_properties_set_int( frame_properties, "consumer_deinterlace", mlt_properties_get_int( properties, "consumer_deinterlace" ) );