]> git.sesse.net Git - mlt/commitdiff
bugfix limits in transition luma
authorddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Mon, 29 Mar 2004 23:48:04 +0000 (23:48 +0000)
committerddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Mon, 29 Mar 2004 23:48:04 +0000 (23:48 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@260 d19143bc-622f-0410-bfdd-b5b2a6649095

src/modules/core/transition_luma.c
src/modules/gtk2/filter_rescale.c

index 609b6105dadc8b2913fed43179cb9136c3013273..024397421e919877ac9313b666c250d7fd510b22 100644 (file)
@@ -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;
 
index 936e0e6d49570dacc43bf2491587c97a32150e81..92b2b7b6713c9de90daae075afd9204f622f9d82 100644 (file)
@@ -74,7 +74,7 @@ static int filter_get_image( mlt_frame this, uint8_t **image, mlt_image_format *
        {
                // When no scaling is requested, revert the requested dimensions if possible
                mlt_properties_set_int( properties, "rescale_width", ( iwidth / 2 ) * 2 );
-               mlt_properties_set_int( properties, "rescale_height", ( iheight /2 ) * 2 );
+               mlt_properties_set_int( properties, "rescale_height", ( iheight / 2 ) * 2 );
        }
 
        // Get the image as requested