mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
make bitfields unsigned
Remove driver property from client-node of client-stream.
This commit is contained in:
parent
787900e8bf
commit
092a0c660d
19 changed files with 64 additions and 59 deletions
|
|
@ -59,7 +59,7 @@ struct link {
|
|||
uint32_t min_buffers;
|
||||
uint32_t n_buffers;
|
||||
struct spa_buffer **buffers;
|
||||
int negotiated:1;
|
||||
unsigned int negotiated:1;
|
||||
};
|
||||
|
||||
struct impl {
|
||||
|
|
@ -90,7 +90,7 @@ struct impl {
|
|||
struct spa_node *resample;
|
||||
|
||||
struct spa_hook listener[4];
|
||||
int listening:1;
|
||||
unsigned int listening:1;
|
||||
};
|
||||
|
||||
static int make_link(struct impl *this,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue