some temporary fixes
[melted] / src / framework / mlt_consumer.c
index 635ad65..5ff7f5f 100644 (file)
@@ -42,6 +42,14 @@ mlt_service mlt_consumer_service( mlt_consumer this )
        return &this->parent;
 }
 
+/** Get the consumer properties.
+*/
+
+mlt_properties mlt_consumer_properties( mlt_consumer this )
+{
+       return mlt_service_properties( &this->parent );
+}
+
 /** Connect the consumer to the producer.
 */
 
@@ -55,8 +63,15 @@ int mlt_consumer_connect( mlt_consumer this, mlt_service producer )
 
 void mlt_consumer_close( mlt_consumer this )
 {
-       if ( this->close != NULL )
-               this->close( this );
+       // Get the childs close function
+       void ( *consumer_close )( ) = this->close;
+
+       // Make sure it only gets called once
+       this->close = NULL;
+
+       // Call the childs close if available
+       if ( consumer_close != NULL )
+               consumer_close( this );
        else
                mlt_service_close( &this->parent );
 }