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
|
|
@ -85,7 +85,7 @@ struct port {
|
|||
uint32_t stride;
|
||||
uint32_t blocks;
|
||||
uint32_t size;
|
||||
int have_format:1;
|
||||
unsigned int have_format:1;
|
||||
|
||||
struct buffer buffers[MAX_BUFFERS];
|
||||
uint32_t n_buffers;
|
||||
|
|
@ -110,8 +110,8 @@ struct impl {
|
|||
struct port in_port;
|
||||
struct port out_port;
|
||||
|
||||
int started:1;
|
||||
int monitor:1;
|
||||
unsigned int started:1;
|
||||
unsigned int monitor:1;
|
||||
|
||||
struct resample resample;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue