mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-07 13:30:09 -05:00
Use types with known sizes where we can, easier to serialize
Add iterator for POD and use it to implement some demarshalling.
This commit is contained in:
parent
23d09d5b60
commit
f92b68c3c3
77 changed files with 839 additions and 695 deletions
|
|
@ -256,13 +256,13 @@ struct _PinosNodeInfo {
|
|||
uint32_t id;
|
||||
uint64_t change_mask;
|
||||
const char *name;
|
||||
unsigned int max_inputs;
|
||||
unsigned int n_inputs;
|
||||
unsigned int n_input_formats;
|
||||
uint32_t max_inputs;
|
||||
uint32_t n_inputs;
|
||||
uint32_t n_input_formats;
|
||||
SpaFormat **input_formats;
|
||||
unsigned int max_outputs;
|
||||
unsigned int n_outputs;
|
||||
unsigned int n_output_formats;
|
||||
uint32_t max_outputs;
|
||||
uint32_t n_outputs;
|
||||
uint32_t n_output_formats;
|
||||
SpaFormat **output_formats;
|
||||
PinosNodeState state;
|
||||
const char *error;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue