From: lilo_booter Date: Wed, 3 Nov 2004 14:58:36 +0000 (+0000) Subject: Correction for direct playback of a cut X-Git-Url: http://research.m1stereo.tv/gitweb?a=commitdiff_plain;h=bea225913b4a89b4d164598869bc607afb3c6695;p=melted Correction for direct playback of a cut git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@504 d19143bc-622f-0410-bfdd-b5b2a6649095 --- diff --git a/src/framework/mlt_producer.c b/src/framework/mlt_producer.c index dab5844..17945f7 100644 --- a/src/framework/mlt_producer.c +++ b/src/framework/mlt_producer.c @@ -445,6 +445,9 @@ static int producer_get_frame( mlt_service service, mlt_frame_ptr frame, int ind } else { + // Get the speed of the cut + double speed = mlt_producer_get_speed( this ); + // Get the parent of this cut mlt_producer parent = mlt_producer_cut_parent( this ); @@ -484,6 +487,9 @@ static int producer_get_frame( mlt_service service, mlt_frame_ptr frame, int ind // We're done with the clone now mlt_properties_set_data( parent_properties, "use_clone", NULL, 0, NULL, NULL ); + + mlt_properties_set_double( mlt_frame_properties( *frame ), "_speed", speed ); + mlt_producer_prepare_next( this ); } return result;