mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04: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
|
|
@ -104,10 +104,10 @@ struct impl {
|
|||
|
||||
struct convert conv;
|
||||
uint32_t cpu_flags;
|
||||
int is_passthrough:1;
|
||||
int started:1;
|
||||
int monitor:1;
|
||||
int have_profile:1;
|
||||
unsigned int is_passthrough:1;
|
||||
unsigned int started:1;
|
||||
unsigned int monitor:1;
|
||||
unsigned int have_profile:1;
|
||||
|
||||
float empty[MAX_SAMPLES + 15];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue