mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-07 13:30:09 -05:00
private: node and port flags are uin64_t
This commit is contained in:
parent
0e3198272b
commit
f84eacdd5b
1 changed files with 2 additions and 2 deletions
|
|
@ -537,7 +537,7 @@ struct pw_impl_node {
|
||||||
|
|
||||||
uint32_t priority_driver; /** priority for being driver */
|
uint32_t priority_driver; /** priority for being driver */
|
||||||
uint32_t group_id; /** group to schedule this node in */
|
uint32_t group_id; /** group to schedule this node in */
|
||||||
uint32_t spa_flags;
|
uint64_t spa_flags;
|
||||||
|
|
||||||
unsigned int registered:1;
|
unsigned int registered:1;
|
||||||
unsigned int active:1; /**< if the node is active */
|
unsigned int active:1; /**< if the node is active */
|
||||||
|
|
@ -657,7 +657,7 @@ struct pw_impl_port {
|
||||||
#define PW_IMPL_PORT_FLAG_CONTROL (1<<2) /**< port has control */
|
#define PW_IMPL_PORT_FLAG_CONTROL (1<<2) /**< port has control */
|
||||||
#define PW_IMPL_PORT_FLAG_NO_MIXER (1<<3) /**< don't try to add mixer to port */
|
#define PW_IMPL_PORT_FLAG_NO_MIXER (1<<3) /**< don't try to add mixer to port */
|
||||||
uint32_t flags;
|
uint32_t flags;
|
||||||
uint32_t spa_flags;
|
uint64_t spa_flags;
|
||||||
|
|
||||||
enum pw_direction direction; /**< port direction */
|
enum pw_direction direction; /**< port direction */
|
||||||
uint32_t port_id; /**< port id */
|
uint32_t port_id; /**< port id */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue