]> git.sesse.net Git - mlt/blobdiff - src/framework/mlt_types.h
Fix movit.convert.fence frame property when using tractor.
[mlt] / src / framework / mlt_types.h
index bb9e2c654d25ff23320f4607729ec1f717ed29ea..9a359c045a44a7a20856c9e3b70e2f4b680b3667 100644 (file)
@@ -112,7 +112,6 @@ 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
 #define MLT_POSITION_FMT "%f"
 #define MLT_POSITION_MOD(A, B) (A - B * ((int)(A / B)))
@@ -123,6 +122,8 @@ typedef double mlt_position;
 typedef int32_t mlt_position;
 #endif
 
+/** A rectangle type with coordinates, size, and opacity */
+
 typedef struct {
        double x; /**< X coordinate */
        double y; /**< Y coordinate */
@@ -132,6 +133,8 @@ typedef struct {
 }
 mlt_rect;
 
+/** A tuple of color components */
+
 typedef struct {
        uint8_t r; /**< red */
        uint8_t g; /**< green */