mlt_repository.c
[melted] / src / framework / mlt_consumer.h
index d05d307..82a08b4 100644 (file)
@@ -52,11 +52,15 @@ struct mlt_consumer_s
        pthread_mutex_t put_mutex;
        pthread_cond_t put_cond;
        mlt_frame put;
+       int put_active;
 };
 
 /** 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 );
@@ -71,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