X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fcore%2Ftransition_luma.c;h=f5da57ebe034bfb12ce122453f6fb0ce1682e57e;hb=e25076bb729fbb4a35b095bc58f3facbcbe82ef5;hp=609b6105dadc8b2913fed43179cb9136c3013273;hpb=3544a004b42ec88fa0d1ef95733b875d7071ffcf;p=melted diff --git a/src/modules/core/transition_luma.c b/src/modules/core/transition_luma.c index 609b610..f5da57e 100644 --- a/src/modules/core/transition_luma.c +++ b/src/modules/core/transition_luma.c @@ -78,6 +78,10 @@ static inline int dissolve_yuv( mlt_frame this, mlt_frame that, float weight, in mlt_frame_get_image( this, &p_dest, &format, &width, &height, 1 ); mlt_frame_get_image( that, &p_src, &format, &width_src, &height_src, 0 ); + // Pick the lesser of two evils ;-) + width_src = width_src > width ? width : width_src; + height_src = height_src > height ? height : height_src; + p = p_dest; limit = p_dest + height_src * width_src * 2; @@ -128,6 +132,10 @@ static void luma_composite( mlt_frame a_frame, mlt_frame b_frame, int luma_width mlt_frame_get_image( a_frame, &p_dest, &format_dest, &width_dest, &height_dest, 1 ); mlt_frame_get_image( b_frame, &p_src, &format_src, &width_src, &height_src, 0 ); + // Pick the lesser of two evils ;-) + width_src = width_src > width_dest ? width_dest : width_src; + height_src = height_src > height_dest ? height_dest : height_src; + stride_src = width_src * 2; stride_dest = width_dest * 2; @@ -444,6 +452,9 @@ static int transition_get_image( mlt_frame a_frame, uint8_t **image, mlt_image_f int top_field_first = mlt_properties_get_int( b_props, "top_field_first" ); int reverse = mlt_properties_get_int( properties, "reverse" ); + if ( mlt_properties_get( a_props, "rescale.interp" ) == NULL ) + mlt_properties_set( a_props, "rescale.interp", "nearest" ); + // Since we are the consumer of the b_frame, we must pass along this // consumer property from the a_frame if ( !strcmp( mlt_properties_get( a_props, "rescale.interp" ), "none" ) ) @@ -461,6 +472,9 @@ static int transition_get_image( mlt_frame a_frame, uint8_t **image, mlt_image_f // Ensure we get scaling on the b_frame mlt_properties_set( b_props, "rescale.interp", "nearest" ); + if ( mlt_properties_get( properties, "fixed" ) ) + mix = mlt_properties_get_double( properties, "fixed" ); + if ( luma_width > 0 && luma_height > 0 && luma_bitmap != NULL ) // Composite the frames using a luma map luma_composite( a_frame, b_frame, luma_width, luma_height, luma_bitmap, mix, frame_delta,