Added ref_count method to properties; temporary work around for test card; titles...
[melted] / src / framework / mlt_properties.h
index c0be46e..ff87dc0 100644 (file)
@@ -22,6 +22,7 @@
 #define _MLT_PROPERTIES_H_
 
 #include "mlt_types.h"
+#include "mlt_events.h"
 #include <stdio.h>
 
 /** The properties base class defines the basic property propagation and
@@ -32,6 +33,8 @@ struct mlt_properties_s
 {
        void *child;
        void *local;
+       mlt_destructor close;
+       void *close_object;
 };
 
 /** Public interface.
@@ -40,6 +43,9 @@ struct mlt_properties_s
 extern int mlt_properties_init( mlt_properties, void *child );
 extern mlt_properties mlt_properties_new( );
 extern mlt_properties mlt_properties_load( char *file );
+extern int mlt_properties_inc_ref( mlt_properties self );
+extern int mlt_properties_dec_ref( mlt_properties self );
+extern int mlt_properties_ref_count( mlt_properties self );
 extern void mlt_properties_mirror( mlt_properties self, mlt_properties that );
 extern int mlt_properties_inherit( mlt_properties self, mlt_properties that );
 extern int mlt_properties_pass( mlt_properties self, mlt_properties that, char *prefix );
@@ -61,6 +67,7 @@ extern void *mlt_properties_get_data( mlt_properties self, char *name, int *leng
 extern int mlt_properties_rename( mlt_properties self, char *source, char *dest );
 extern int mlt_properties_count( mlt_properties self );
 extern void mlt_properties_dump( mlt_properties self, FILE *output );
+extern void mlt_properties_debug( mlt_properties self, char *title, FILE *output );
 extern void mlt_properties_close( mlt_properties self );
 
 #endif