From: ddennedy Date: Fri, 12 Mar 2004 20:40:19 +0000 (+0000) Subject: fix distortion in smoothness X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=d903958e230b9f8178e243be66cdc1d962d48598;hp=82381ce474e1d1a749d130e1461657e5d6167125;p=melted fix distortion in smoothness git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@209 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/core/transition_luma.c b/src/modules/core/transition_luma.c index bba678d..d4d4074 100644 --- a/src/modules/core/transition_luma.c +++ b/src/modules/core/transition_luma.c @@ -92,7 +92,7 @@ static inline int dissolve_yuv( mlt_frame this, mlt_frame that, float weight, in // image processing functions -static inline int32_t smoothstep( int32_t edge1, int32_t edge2, int32_t a ) +static inline int32_t smoothstep( int32_t edge1, int32_t edge2, uint32_t a ) { if ( a < edge1 ) return 0;