X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_producer.c;h=a35d134ea453f762d0b93b4556c53eb3d7d608e8;hb=ad829dbc7677a2acc063635db14ce717eb40be50;hp=74441f94a8d4a03cd8d1c976a3a1e3efa1e8be15;hpb=23571c330fd1644833dcb73661ac987eda177200;p=melted diff --git a/src/framework/mlt_producer.c b/src/framework/mlt_producer.c index 74441f9..a35d134 100644 --- a/src/framework/mlt_producer.c +++ b/src/framework/mlt_producer.c @@ -298,6 +298,8 @@ static int producer_get_frame( mlt_service service, mlt_frame_ptr frame, int ind mlt_properties_set_double( properties, "fps", mlt_producer_get_fps( this ) ); double speed = mlt_producer_get_speed( this ); mlt_properties_set_double( properties, "_speed", speed ); + mlt_properties_set_int( properties, "test_audio", mlt_frame_is_test_audio( *frame ) ); + mlt_properties_set_int( properties, "test_image", mlt_frame_is_test_card( *frame ) ); return 0; }