X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_producer.c;h=751e19a9e3066309fd03efd267743c15325a6e97;hb=9390e8b584f3f717f0a326893c0e37cf187a0a51;hp=87c2f0899faf3e4bc557fab4552aa2c4ae69267c;hpb=bde459b930f0e9ed57d17ba5bc9070c0c387c21e;p=melted diff --git a/src/framework/mlt_producer.c b/src/framework/mlt_producer.c index 87c2f08..751e19a 100644 --- a/src/framework/mlt_producer.c +++ b/src/framework/mlt_producer.c @@ -265,6 +265,10 @@ static int producer_get_frame( mlt_service service, mlt_frame_ptr frame, int ind { // Get the frame from the implementation result = this->get_frame( this, frame, index ); + + mlt_properties frame_properties = mlt_frame_properties( *frame ); + double speed = mlt_producer_get_speed( this ); + mlt_properties_set_double( frame_properties, "speed", speed ); } else {