From: lilo_booter Date: Thu, 23 Feb 2006 09:33:13 +0000 (+0000) Subject: + Activates the mixdown in the combine to allow audio sync'd with wipe (smooth rampin... X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=4d10918ca2e6c0c3352242cd5ffbe24c54fe0e68;p=melted + Activates the mixdown in the combine to allow audio sync'd with wipe (smooth ramping not implemented yet) git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@890 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/modules/vmfx/filter_shape.c b/src/modules/vmfx/filter_shape.c index ec302c6..e900e05 100644 --- a/src/modules/vmfx/filter_shape.c +++ b/src/modules/vmfx/filter_shape.c @@ -199,7 +199,10 @@ static mlt_frame filter_process( mlt_filter this, mlt_frame frame ) mlt_deque_push_back_double( MLT_FRAME_IMAGE_STACK( frame ), alpha_mix / 100.0 ); mlt_frame_push_get_image( frame, filter_get_image ); if ( mlt_properties_get_int( MLT_FILTER_PROPERTIES( this ), "audio_match" ) ) + { + mlt_properties_set_int( MLT_FRAME_PROPERTIES( frame ), "meta.mixdown", 1 ); mlt_properties_set_double( MLT_FRAME_PROPERTIES( frame ), "meta.volume", alpha_mix / 100.0 ); + } } }