mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-06 13:30:01 -05:00
pw_factory_proxy -> pw_factory
This commit is contained in:
parent
f1eb5f6046
commit
114982f3f5
9 changed files with 57 additions and 57 deletions
|
|
@ -811,8 +811,8 @@ static void factory_event_info(void *object, const struct pw_factory_info *info)
|
|||
}
|
||||
}
|
||||
|
||||
static const struct pw_factory_proxy_events factory_events = {
|
||||
PW_VERSION_FACTORY_PROXY_EVENTS,
|
||||
static const struct pw_factory_events factory_events = {
|
||||
PW_VERSION_FACTORY_EVENTS,
|
||||
.info = factory_event_info
|
||||
};
|
||||
|
||||
|
|
@ -1122,7 +1122,7 @@ static bool bind_global(struct remote_data *rd, struct global *global, char **er
|
|||
break;
|
||||
case PW_TYPE_INTERFACE_Factory:
|
||||
events = &factory_events;
|
||||
client_version = PW_VERSION_FACTORY_PROXY;
|
||||
client_version = PW_VERSION_FACTORY;
|
||||
destroy = (pw_destroy_t) pw_factory_info_free;
|
||||
info_func = info_factory;
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -561,8 +561,8 @@ static void factory_event_info(void *data, const struct pw_factory_info *info)
|
|||
global_event_info(data, info);
|
||||
}
|
||||
|
||||
static const struct pw_factory_proxy_events factory_events = {
|
||||
PW_VERSION_FACTORY_PROXY_EVENTS,
|
||||
static const struct pw_factory_events factory_events = {
|
||||
PW_VERSION_FACTORY_EVENTS,
|
||||
.info = factory_event_info
|
||||
};
|
||||
|
||||
|
|
@ -650,7 +650,7 @@ static void registry_event_global(void *data, uint32_t id, uint32_t permissions,
|
|||
info_destroy = (pw_destroy_t)pw_factory_info_free;
|
||||
info_update = (info_update_t)pw_factory_info_update;
|
||||
draw = draw_factory;
|
||||
client_version = PW_VERSION_FACTORY_PROXY;
|
||||
client_version = PW_VERSION_FACTORY;
|
||||
break;
|
||||
case PW_TYPE_INTERFACE_Module:
|
||||
events = &module_events;
|
||||
|
|
|
|||
|
|
@ -393,8 +393,8 @@ static void factory_event_info(void *object, const struct pw_factory_info *info)
|
|||
}
|
||||
}
|
||||
|
||||
static const struct pw_factory_proxy_events factory_events = {
|
||||
PW_VERSION_FACTORY_PROXY_EVENTS,
|
||||
static const struct pw_factory_events factory_events = {
|
||||
PW_VERSION_FACTORY_EVENTS,
|
||||
.info = factory_event_info
|
||||
};
|
||||
|
||||
|
|
@ -601,7 +601,7 @@ static void registry_event_global(void *data, uint32_t id,
|
|||
break;
|
||||
case PW_TYPE_INTERFACE_Factory:
|
||||
events = &factory_events;
|
||||
client_version = PW_VERSION_FACTORY_PROXY;
|
||||
client_version = PW_VERSION_FACTORY;
|
||||
destroy = (pw_destroy_t) pw_factory_info_free;
|
||||
break;
|
||||
case PW_TYPE_INTERFACE_Client:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue