X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=mlt%2Fsrc%2Fframework%2Fmlt_property.h;h=3f59ad27e630c68b032e73bfd226545f79c9100e;hb=205a3ce6e270b4c478e85f930bfbc5fe28080dda;hp=6b0def55d781c7dbf0d50342843a05c1a328aa3c;hpb=80a5c8297b313b09add80814a637a71ba9e0fa05;p=melted diff --git a/mlt/src/framework/mlt_property.h b/mlt/src/framework/mlt_property.h index 6b0def5..3f59ad2 100644 --- a/mlt/src/framework/mlt_property.h +++ b/mlt/src/framework/mlt_property.h @@ -31,7 +31,7 @@ typedef enum mlt_prop_none = 0, mlt_prop_int = 1, mlt_prop_string = 2, - mlt_prop_timecode = 4, + mlt_prop_position = 4, mlt_prop_double = 8, mlt_prop_data = 16, mlt_prop_int64 = 32 @@ -48,7 +48,7 @@ typedef struct mlt_property_s // Atomic type handling int prop_int; - mlt_timecode prop_timecode; + mlt_position prop_position; double prop_double; int64_t prop_int64; @@ -70,13 +70,13 @@ extern mlt_property mlt_property_init( ); 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_position( mlt_property this, mlt_position 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 mlt_position mlt_property_get_position( 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 );