mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-05 13:30:02 -05:00
jack: avoid metadata updates to monitor nodes
Because there is no difference in the node id of the monitor and the sink carla has problems. See #1945
This commit is contained in:
parent
1f4d3b0a1b
commit
4c0bba953a
2 changed files with 10 additions and 5 deletions
|
|
@ -54,7 +54,7 @@ jack_uuid_t jack_port_uuid_generate (uint32_t port_id)
|
|||
SPA_EXPORT
|
||||
uint32_t jack_uuid_to_index (jack_uuid_t id)
|
||||
{
|
||||
return (id & 0xffffffff) - 1;
|
||||
return (id & 0xffffff) - 1;
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue