mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
jack: implement some missing methods
to make qjackctl 0.9.0 work
This commit is contained in:
parent
20008b4846
commit
3450bea416
1 changed files with 54 additions and 1 deletions
|
|
@ -4719,7 +4719,12 @@ int jack_session_reply (jack_client_t *client,
|
|||
SPA_EXPORT
|
||||
void jack_session_event_free (jack_session_event_t *event)
|
||||
{
|
||||
pw_log_warn("not implemented");
|
||||
if (event) {
|
||||
free((void *)event->session_dir);
|
||||
free((void *)event->client_uuid);
|
||||
free(event->command_line);
|
||||
free(event);
|
||||
}
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
|
|
@ -4732,6 +4737,54 @@ char *jack_client_get_uuid (jack_client_t *client)
|
|||
return spa_aprintf("%"PRIu64, client_make_uuid(c->node_id));
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
jack_session_command_t *jack_session_notify (
|
||||
jack_client_t* client,
|
||||
const char *target,
|
||||
jack_session_event_type_t type,
|
||||
const char *path)
|
||||
{
|
||||
struct client *c = (struct client *) client;
|
||||
spa_return_val_if_fail(c != NULL, NULL);
|
||||
pw_log_warn("not implemented");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
void jack_session_commands_free (jack_session_command_t *cmds)
|
||||
{
|
||||
int i;
|
||||
if (cmds == NULL)
|
||||
return;
|
||||
|
||||
for (i = 0; cmds[i].uuid != NULL; i++) {
|
||||
free((char*)cmds[i].client_name);
|
||||
free((char*)cmds[i].command);
|
||||
free((char*)cmds[i].uuid);
|
||||
}
|
||||
free(cmds);
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
int jack_reserve_client_name (jack_client_t *client,
|
||||
const char *name,
|
||||
const char *uuid)
|
||||
{
|
||||
struct client *c = (struct client *) client;
|
||||
spa_return_val_if_fail(c != NULL, -1);
|
||||
pw_log_warn("not implemented");
|
||||
return 0;
|
||||
}
|
||||
|
||||
SPA_EXPORT
|
||||
int jack_client_has_session_callback (jack_client_t *client, const char *client_name)
|
||||
{
|
||||
struct client *c = (struct client *) client;
|
||||
spa_return_val_if_fail(c != NULL, -1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
SPA_EXPORT
|
||||
int jack_client_real_time_priority (jack_client_t * client)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue