mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
alsa,bluez5: handle SPA_PARAM_Latency in port_set_param
Simply return 0 instead of -ENOENT. Fixes #1262
This commit is contained in:
parent
d3fcc0a37a
commit
8c42e6aecb
7 changed files with 30 additions and 6 deletions
|
|
@ -998,6 +998,9 @@ impl_node_port_set_param(void *object,
|
|||
case SPA_PARAM_Format:
|
||||
res = port_set_format(this, port, flags, param);
|
||||
break;
|
||||
case SPA_PARAM_Latency:
|
||||
res = 0;
|
||||
break;
|
||||
default:
|
||||
res = -ENOENT;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue