From b10510b015c9cdb99db0573f3b3f833f5d9781b3 Mon Sep 17 00:00:00 2001 From: Dan Dennedy Date: Wed, 6 Apr 2011 21:28:41 -0700 Subject: [PATCH] Fix regression on region transition (3277867). --- src/modules/core/transition_composite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/core/transition_composite.c b/src/modules/core/transition_composite.c index 22eb091e..5c805431 100644 --- a/src/modules/core/transition_composite.c +++ b/src/modules/core/transition_composite.c @@ -983,8 +983,8 @@ mlt_frame composite_copy_region( mlt_transition this, mlt_frame a_frame, mlt_pos // Get the image and dimensions uint8_t *image = NULL; - int width = mlt_properties_get_int( a_props, "width" ); - int height = mlt_properties_get_int( a_props, "height" ); + int width = mlt_properties_get_int( a_props, "normalised_width" ); + int height = mlt_properties_get_int( a_props, "normalised_height" ); mlt_image_format format = mlt_image_yuv422; mlt_frame_get_image( a_frame, &image, &format, &width, &height, 0 ); -- 2.39.2