X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_consumer.h;h=03d265797057e49eb6f5e8ed45e0d2ddca79ba9b;hb=a2c29b04aabe82b14851b905fca993f9f471bc6b;hp=873f42165efb68dbf213c348f9d7dc3b5a905170;hpb=cab7cd53c3a4d9c4355751088fec61860dcabbce;p=melted diff --git a/src/framework/mlt_consumer.h b/src/framework/mlt_consumer.h index 873f421..03d2657 100644 --- a/src/framework/mlt_consumer.h +++ b/src/framework/mlt_consumer.h @@ -29,16 +29,16 @@ struct mlt_consumer_s { - // We're implementing service here + /* We're implementing service here */ struct mlt_service_s parent; - // public virtual + /* public virtual */ int ( *start )( mlt_consumer ); int ( *stop )( mlt_consumer ); int ( *is_stopped )( mlt_consumer ); void ( *close )( mlt_consumer ); - // Private data + /* Private data */ void *local; void *child; @@ -75,5 +75,6 @@ extern int mlt_consumer_stop( mlt_consumer self ); extern int mlt_consumer_is_stopped( mlt_consumer self ); extern void mlt_consumer_stopped( mlt_consumer self ); extern void mlt_consumer_close( mlt_consumer ); +extern int mlt_consumer_profile( mlt_properties properties, char *profile ); #endif