mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-18 07:00:06 -05:00
port to meson
This commit is contained in:
parent
924824d0a3
commit
67dd3adb87
69 changed files with 1056 additions and 999 deletions
|
|
@ -130,9 +130,10 @@ typedef struct {
|
|||
|
||||
/* SPA_CONTROL_CMD_SET_FORMAT */
|
||||
typedef struct {
|
||||
uint32_t seq;
|
||||
uint32_t port_id;
|
||||
SpaFormat *format;
|
||||
uint32_t seq;
|
||||
uint32_t port_id;
|
||||
SpaPortFormatFlags flags;
|
||||
SpaFormat *format;
|
||||
} SpaControlCmdSetFormat;
|
||||
|
||||
/* SPA_CONTROL_CMD_SET_PROPERTY */
|
||||
|
|
|
|||
|
|
@ -1,8 +1,22 @@
|
|||
install_headers('buffer.h',
|
||||
'command.h',
|
||||
'defs.h',
|
||||
'event.h',
|
||||
'node.h',
|
||||
'plugin.h',
|
||||
'port.h',
|
||||
'props.h')
|
||||
spa_headers = [
|
||||
'buffer.h',
|
||||
'clock.h',
|
||||
'control.h',
|
||||
'debug.h',
|
||||
'defs.h',
|
||||
'dict.h',
|
||||
'format.h',
|
||||
'memory.h',
|
||||
'monitor.h',
|
||||
'node-command.h',
|
||||
'node-event.h',
|
||||
'node.h',
|
||||
'plugin.h',
|
||||
'poll.h',
|
||||
'port.h',
|
||||
'props.h',
|
||||
'queue.h',
|
||||
'ringbuffer.h'
|
||||
]
|
||||
|
||||
install_headers(spa_headers, subdir : 'spa')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue