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:
Wim Taymans 2021-12-24 11:30:56 +01:00
parent 1f4d3b0a1b
commit 4c0bba953a
2 changed files with 10 additions and 5 deletions

View file

@ -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