emit bound_id event

This commit is contained in:
Wim Taymans 2019-11-28 12:52:17 +01:00
parent f56e4dbc4d
commit e3a1c4151e
12 changed files with 23 additions and 0 deletions

View file

@ -97,9 +97,20 @@ static void device_destroy(void *data)
pw_resource_destroy(impl->resource);
}
static void device_initialized(void *data)
{
struct impl *impl = data;
struct pw_device *device = impl->device;
struct pw_global *global = pw_device_get_global(device);
pw_log_debug("client-device %p: initialized global:%d", impl, global->id);
pw_resource_bound_id(impl->resource, global->id);
}
static const struct pw_device_events device_events = {
PW_VERSION_DEVICE_EVENTS,
.destroy = device_destroy,
.initialized = device_initialized,
};
struct pw_device *pw_client_device_new(struct pw_resource *resource,

View file

@ -1228,6 +1228,8 @@ void pw_client_node_registered(struct pw_client_node *this, struct pw_global *gl
if (this->resource == NULL)
return;
pw_resource_bound_id(this->resource, node_id);
pw_client_node_resource_transport(this->resource,
node_id,
impl->other_fds[0],

View file

@ -317,6 +317,7 @@ int endpoint_init(struct endpoint *this,
this->info.id = this->global->id;
this->info.props = &this->props->dict;
pw_resource_bound_id(client_ep->resource, this->global->id);
pw_client_endpoint_resource_set_id(client_ep->resource, this->global->id);
return pw_global_register(this->global);

View file

@ -313,6 +313,7 @@ int session_init(struct session *this,
this->info.id = this->global->id;
this->info.props = &this->props->dict;
pw_resource_bound_id(client_sess->resource, this->global->id);
pw_client_session_resource_set_id(client_sess->resource, this->global->id);
return pw_global_register(this->global);