From 7a813d44afa9d1d1639b64610f7b28156c13c595 Mon Sep 17 00:00:00 2001 From: Dan Dennedy Date: Tue, 14 Jan 2014 21:06:43 -0800 Subject: [PATCH] Fix movit.convert.fence frame property when using tractor. --- src/framework/mlt_tractor.c | 3 +++ 1 file changed, 3 insertions(+) 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 ); -- 2.39.2