X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_producer.c;h=6441155603ef338d7e27eaf1b5379aa0b3f64c7c;hb=782525889e995881b65765f764d31a390c1b904a;hp=3c953d624446774382efa97b77a1dc33549bf3c4;hpb=2d9ad7ff9d46ac8da7fb0d1d350febbe0c24317d;p=melted diff --git a/src/framework/mlt_producer.c b/src/framework/mlt_producer.c index 3c953d6..6441155 100644 --- a/src/framework/mlt_producer.c +++ b/src/framework/mlt_producer.c @@ -259,6 +259,10 @@ static int producer_get_frame( mlt_service service, mlt_frame_ptr frame, int ind // Set the position result = mlt_frame_set_position( *frame, mlt_producer_position( this ) ); + // Mark as a test card + mlt_properties_set_int( mlt_frame_properties( *frame ), "test_image", 1 ); + mlt_properties_set_int( mlt_frame_properties( *frame ), "test_audio", 1 ); + // Calculate the next position mlt_producer_prepare_next( this ); }