int64 based comms and more unit functionality
[melted] / src / framework / mlt_property.h
index 8fb209c..6b0def5 100644 (file)
@@ -33,7 +33,8 @@ typedef enum
        mlt_prop_string = 2,
        mlt_prop_timecode = 4,
        mlt_prop_double = 8,
-       mlt_prop_data = 16
+       mlt_prop_data = 16,
+       mlt_prop_int64 = 32
 }
 mlt_property_type;
 
@@ -49,6 +50,7 @@ typedef struct mlt_property_s
        int prop_int;
        mlt_timecode prop_timecode;
        double prop_double;
+       int64_t prop_int64;
 
        // String handling
        char *prop_string;
@@ -69,11 +71,13 @@ extern void mlt_property_clear( mlt_property this );
 extern int mlt_property_set_int( mlt_property this, int value );
 extern int mlt_property_set_double( mlt_property this, double value );
 extern int mlt_property_set_timecode( mlt_property this, mlt_timecode value );
+extern int mlt_property_set_uint64( mlt_property this, uint64_t value );
 extern int mlt_property_set_string( mlt_property this, char *value );
 extern int mlt_property_set_data( mlt_property this, void *value, int length, mlt_destructor destructor, mlt_serialiser serialiser );
 extern int mlt_property_get_int( mlt_property this );
 extern double mlt_property_get_double( mlt_property this );
 extern mlt_timecode mlt_property_get_timecode( mlt_property this );
+extern int64_t mlt_property_get_int64( mlt_property this );
 extern char *mlt_property_get_string( mlt_property this );
 extern void *mlt_property_get_data( mlt_property this, int *length );
 extern void mlt_property_close( mlt_property this );