mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-07 13:30:09 -05:00
control: clean up some control includes
Remove control from channelmix, it's not used Add control metadata Add OSC control type Improve some docs
This commit is contained in:
parent
8b85cc225e
commit
4381e79632
14 changed files with 20 additions and 57 deletions
|
|
@ -30,6 +30,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#include <spa/utils/defs.h>
|
||||
#include <spa/pod/pod.h>
|
||||
|
||||
/** \page page_meta Metadata
|
||||
*
|
||||
|
|
@ -42,6 +43,8 @@ enum spa_meta_type {
|
|||
SPA_META_VideoDamage,
|
||||
SPA_META_Bitmap,
|
||||
SPA_META_Cursor,
|
||||
SPA_META_Control, /**< metadata contains a spa_pod_sequence
|
||||
* associated with the data */
|
||||
|
||||
SPA_META_LAST, /**< not part of ABI/API */
|
||||
};
|
||||
|
|
@ -134,6 +137,11 @@ struct spa_meta_cursor {
|
|||
* struct spa_meta_bitmap at the offset. */
|
||||
};
|
||||
|
||||
/** a timed set of events associated with the buffer */
|
||||
struct spa_meta_control {
|
||||
struct spa_pod_sequence sequence;
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue