]> git.sesse.net Git - mlt/commitdiff
fix distortion in smoothness
authorddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 12 Mar 2004 20:40:19 +0000 (20:40 +0000)
committerddennedy <ddennedy@d19143bc-622f-0410-bfdd-b5b2a6649095>
Fri, 12 Mar 2004 20:40:19 +0000 (20:40 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@209 d19143bc-622f-0410-bfdd-b5b2a6649095

src/modules/core/transition_luma.c

index bba678d8f8413465bebd9ea830bc5d4b69d7ca38..d4d4074998c888f6a0398476127a4c62d039b05d 100644 (file)
@@ -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;