mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-16 07:00:00 -05:00
intersection improvements
Add uri type
This commit is contained in:
parent
7a7ede96e5
commit
282995d0d0
4 changed files with 55 additions and 12 deletions
|
|
@ -35,6 +35,7 @@ extern "C" {
|
|||
typedef enum {
|
||||
SPA_POD_TYPE_INVALID = 0,
|
||||
SPA_POD_TYPE_BOOL,
|
||||
SPA_POD_TYPE_URI,
|
||||
SPA_POD_TYPE_INT,
|
||||
SPA_POD_TYPE_LONG,
|
||||
SPA_POD_TYPE_FLOAT,
|
||||
|
|
@ -64,13 +65,13 @@ typedef struct {
|
|||
#define SPA_POD_BODY(pod) SPA_MEMBER((pod),sizeof(SpaPOD),void)
|
||||
#define SPA_POD_BODY_CONST(pod) SPA_MEMBER((pod),sizeof(SpaPOD),const void)
|
||||
|
||||
|
||||
typedef struct {
|
||||
SpaPOD pod;
|
||||
int32_t value;
|
||||
} SpaPODInt;
|
||||
|
||||
typedef SpaPODInt SpaPODBool;
|
||||
typedef SpaPODInt SpaPODURI;
|
||||
|
||||
typedef struct {
|
||||
SpaPOD pod;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue