spa: fix includes

This commit is contained in:
Wim Taymans 2023-01-13 11:41:38 +01:00
parent 00ae289a14
commit 9a580362a7
15 changed files with 83 additions and 28 deletions

View file

@ -177,7 +177,8 @@ enum spa_meta_videotransform_value {
/** a transformation of the buffer */
struct spa_meta_videotransform {
uint32_t transform; /**< orientation transformation that was applied to the buffer */
uint32_t transform; /**< orientation transformation that was applied to the buffer,
* one of enum spa_meta_videotransform_value */
};
/**

View file

@ -79,6 +79,7 @@ static const struct spa_type_info spa_type_meta_type[] = {
{ SPA_META_Cursor, SPA_TYPE_Pointer, SPA_TYPE_INFO_META_BASE "Cursor", NULL },
{ SPA_META_Control, SPA_TYPE_Pointer, SPA_TYPE_INFO_META_BASE "Control", NULL },
{ SPA_META_Busy, SPA_TYPE_Pointer, SPA_TYPE_INFO_META_BASE "Busy", NULL },
{ SPA_META_VideoTransform, SPA_TYPE_Pointer, SPA_TYPE_INFO_META_BASE "VideoTransform", NULL },
{ 0, 0, NULL, NULL },
};