From: Dan Dennedy Date: Wed, 15 Jan 2014 05:06:43 +0000 (-0800) Subject: Fix movit.convert.fence frame property when using tractor. X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=7a813d44afa9d1d1639b64610f7b28156c13c595;p=mlt Fix movit.convert.fence frame property when using tractor. --- diff --git a/src/framework/mlt_tractor.c b/src/framework/mlt_tractor.c index b39b1949..2f692dc5 100644 --- a/src/framework/mlt_tractor.c +++ b/src/framework/mlt_tractor.c @@ -281,6 +281,9 @@ static int producer_get_image( mlt_frame self, uint8_t **buffer, mlt_image_forma mlt_properties_set_int( properties, "colorspace", mlt_properties_get_int( frame_properties, "colorspace" ) ); mlt_properties_set_int( properties, "force_full_luma", mlt_properties_get_int( frame_properties, "force_full_luma" ) ); mlt_properties_set_int( properties, "top_field_first", mlt_properties_get_int( frame_properties, "top_field_first" ) ); + mlt_properties_set_data( properties, "movit.convert.fence", + mlt_properties_get_data( frame_properties, "movit.convert.fence", NULL ), + 0, NULL, NULL ); data = mlt_frame_get_alpha_mask( frame ); mlt_properties_get_data( frame_properties, "alpha", &size ); mlt_frame_set_alpha( self, data, size, NULL );