X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2Fmlt_types.h;h=e9c1743271db526e1045f5641fd81ff23f3668ca;hb=a8be96087b2f59f05330f2a6320baa62d31d5c03;hp=7d233594007ec117fca0d34152a32fb568cfe2ee;hpb=3e00d7e35326b6fecbd95f459266f91fc60e6f15;p=melted diff --git a/src/framework/mlt_types.h b/src/framework/mlt_types.h index 7d23359..e9c1743 100644 --- a/src/framework/mlt_types.h +++ b/src/framework/mlt_types.h @@ -50,7 +50,7 @@ typedef enum } mlt_whence; -typedef enum +typedef enum { invalid_type, unknown_type, @@ -65,13 +65,19 @@ typedef enum } mlt_service_type; +/* I don't want to break anyone's applications without warning. -Zach */ +#undef DOUBLE_MLT_POSITION +#ifdef DOUBLE_MLT_POSITION +typedef double mlt_position; +#else typedef int32_t mlt_position; +#endif + typedef struct mlt_frame_s *mlt_frame, **mlt_frame_ptr; typedef struct mlt_properties_s *mlt_properties; typedef struct mlt_event_struct *mlt_event; typedef struct mlt_service_s *mlt_service; typedef struct mlt_producer_s *mlt_producer; -typedef struct mlt_manager_s *mlt_manager; typedef struct mlt_playlist_s *mlt_playlist; typedef struct mlt_multitrack_s *mlt_multitrack; typedef struct mlt_filter_s *mlt_filter; @@ -81,6 +87,8 @@ typedef struct mlt_field_s *mlt_field; typedef struct mlt_consumer_s *mlt_consumer; typedef struct mlt_parser_s *mlt_parser; typedef struct mlt_deque_s *mlt_deque; +typedef struct mlt_geometry_s *mlt_geometry; +typedef struct mlt_geometry_item_s *mlt_geometry_item; typedef void ( *mlt_destructor )( void * ); typedef char *( *mlt_serialiser )( void *, int length );