mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-19 08:57:14 -05:00
pw_client -> pw_impl_client
This commit is contained in:
parent
d70a47b7fe
commit
95688939bf
40 changed files with 236 additions and 236 deletions
|
|
@ -168,8 +168,8 @@ static void *create_object(void *data,
|
|||
struct factory_data *d = data;
|
||||
struct pw_factory *factory = d->factory;
|
||||
struct client_endpoint *this;
|
||||
struct pw_client *owner = pw_resource_get_client(owner_resource);
|
||||
struct pw_context *context = pw_client_get_context(owner);
|
||||
struct pw_impl_client *owner = pw_resource_get_client(owner_resource);
|
||||
struct pw_context *context = pw_impl_client_get_context(owner);
|
||||
|
||||
this = calloc(1, sizeof(struct client_endpoint));
|
||||
if (this == NULL)
|
||||
|
|
|
|||
|
|
@ -167,8 +167,8 @@ static void *create_object(void *data,
|
|||
struct factory_data *d = data;
|
||||
struct pw_factory *factory = d->factory;
|
||||
struct client_session *this;
|
||||
struct pw_client *owner = pw_resource_get_client(owner_resource);
|
||||
struct pw_context *context = pw_client_get_context(owner);
|
||||
struct pw_impl_client *owner = pw_resource_get_client(owner_resource);
|
||||
struct pw_context *context = pw_impl_client_get_context(owner);
|
||||
|
||||
this = calloc(1, sizeof(struct client_session));
|
||||
if (this == NULL)
|
||||
|
|
|
|||
|
|
@ -255,7 +255,7 @@ static const struct pw_resource_events resource_events = {
|
|||
.destroy = endpoint_link_unbind,
|
||||
};
|
||||
|
||||
static int endpoint_link_bind(void *_data, struct pw_client *client,
|
||||
static int endpoint_link_bind(void *_data, struct pw_impl_client *client,
|
||||
uint32_t permissions, uint32_t version, uint32_t id)
|
||||
{
|
||||
struct endpoint_link *this = _data;
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@ static const struct pw_resource_events resource_events = {
|
|||
.destroy = endpoint_stream_unbind,
|
||||
};
|
||||
|
||||
static int endpoint_stream_bind(void *_data, struct pw_client *client,
|
||||
static int endpoint_stream_bind(void *_data, struct pw_impl_client *client,
|
||||
uint32_t permissions, uint32_t version, uint32_t id)
|
||||
{
|
||||
struct endpoint_stream *this = _data;
|
||||
|
|
|
|||
|
|
@ -259,7 +259,7 @@ static const struct pw_resource_events resource_events = {
|
|||
.destroy = endpoint_unbind,
|
||||
};
|
||||
|
||||
static int endpoint_bind(void *_data, struct pw_client *client,
|
||||
static int endpoint_bind(void *_data, struct pw_impl_client *client,
|
||||
uint32_t permissions, uint32_t version, uint32_t id)
|
||||
{
|
||||
struct endpoint *this = _data;
|
||||
|
|
|
|||
|
|
@ -229,7 +229,7 @@ static const struct pw_resource_events resource_events = {
|
|||
.destroy = session_unbind,
|
||||
};
|
||||
|
||||
static int session_bind(void *_data, struct pw_client *client,
|
||||
static int session_bind(void *_data, struct pw_impl_client *client,
|
||||
uint32_t permissions, uint32_t version, uint32_t id)
|
||||
{
|
||||
struct session *this = _data;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue