X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_consumer.h;h=d68ff56d9e8bed0280a8a8c768a4d3eed4db1092;hb=0a763f7b10f28184bba59fd8cecbc29999c131ef;hp=2439b970bf0d550c06a2a367e64fb063c983a472;hpb=f44c1d4653f43c8e7a63e6c3895f6f1f0ee0103b;p=melted diff --git a/src/framework/mlt_consumer.h b/src/framework/mlt_consumer.h index 2439b97..d68ff56 100644 --- a/src/framework/mlt_consumer.h +++ b/src/framework/mlt_consumer.h @@ -49,11 +49,17 @@ struct mlt_consumer_s pthread_t ahead_thread; pthread_mutex_t mutex; pthread_cond_t cond; + pthread_mutex_t put_mutex; + pthread_cond_t put_cond; + mlt_frame put; }; /** Public final methods */ +#define MLT_CONSUMER_SERVICE( consumer ) ( &( consumer )->parent ) +#define MLT_CONSUMER_PROPERTIES( consumer ) MLT_SERVICE_PROPERTIES( MLT_CONSUMER_SERVICE( consumer ) ) + extern int mlt_consumer_init( mlt_consumer self, void *child ); extern mlt_consumer mlt_consumer_new( ); extern mlt_service mlt_consumer_service( mlt_consumer self ); @@ -61,6 +67,7 @@ extern mlt_properties mlt_consumer_properties( mlt_consumer self ); extern int mlt_consumer_connect( mlt_consumer self, mlt_service producer ); extern int mlt_consumer_start( mlt_consumer self ); extern void mlt_consumer_purge( mlt_consumer self ); +extern int mlt_consumer_put_frame( mlt_consumer self, mlt_frame frame ); extern mlt_frame mlt_consumer_get_frame( mlt_consumer self ); extern mlt_frame mlt_consumer_rt_frame( mlt_consumer self ); extern int mlt_consumer_stop( mlt_consumer self );