jack: add jack_port_rename

This commit is contained in:
Wim Taymans 2018-10-23 16:50:59 +02:00
parent 88c824208a
commit 98992d88d3

View file

@ -2016,7 +2016,7 @@ int jack_set_xrun_callback (jack_client_t *client,
JackXRunCallback xrun_callback, void *arg)
{
pw_log_warn("not implemented");
return -ENOTSUP;
return 0;
}
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;
}
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)
{
pw_log_warn("not implemented");