mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
jack: add jack_port_rename
This commit is contained in:
parent
88c824208a
commit
98992d88d3
1 changed files with 7 additions and 1 deletions
|
|
@ -2016,7 +2016,7 @@ int jack_set_xrun_callback (jack_client_t *client,
|
||||||
JackXRunCallback xrun_callback, void *arg)
|
JackXRunCallback xrun_callback, void *arg)
|
||||||
{
|
{
|
||||||
pw_log_warn("not implemented");
|
pw_log_warn("not implemented");
|
||||||
return -ENOTSUP;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int jack_set_latency_callback (jack_client_t *client,
|
int jack_set_latency_callback (jack_client_t *client,
|
||||||
|
|
@ -2419,6 +2419,12 @@ int jack_port_set_name (jack_port_t *port, const char *port_name)
|
||||||
return -ENOTSUP;
|
return -ENOTSUP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int jack_port_rename (jack_client_t* client, jack_port_t *port, const char *port_name)
|
||||||
|
{
|
||||||
|
pw_log_warn("not implemented");
|
||||||
|
return -ENOTSUP;
|
||||||
|
}
|
||||||
|
|
||||||
int jack_port_set_alias (jack_port_t *port, const char *alias)
|
int jack_port_set_alias (jack_port_t *port, const char *alias)
|
||||||
{
|
{
|
||||||
pw_log_warn("not implemented");
|
pw_log_warn("not implemented");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue