pw_node_proxy -> pw_node

This commit is contained in:
Wim Taymans 2019-12-11 15:26:11 +01:00
parent 199fa47216
commit beb3c69dfe
23 changed files with 126 additions and 126 deletions

View file

@ -60,8 +60,8 @@ static void node_event_info(void *object, const struct pw_node_info *info)
}
}
static const struct pw_node_proxy_events node_events = {
PW_VERSION_NODE_PROXY_EVENTS,
static const struct pw_node_events node_events = {
PW_VERSION_NODE_EVENTS,
.info = node_event_info,
};
@ -97,7 +97,7 @@ static int make_node(struct data *data)
if (data->proxy == NULL)
return -errno;
pw_node_proxy_add_listener((struct pw_node_proxy*)data->proxy,
pw_node_add_listener((struct pw_node*)data->proxy,
&data->node_listener, &node_events, data);
return 0;