5#ifndef PIPEWIRE_IMPL_FACTORY_H 
    6#define PIPEWIRE_IMPL_FACTORY_H 
   31#define PW_VERSION_IMPL_FACTORY_EVENTS  0 
   43#define PW_VERSION_IMPL_FACTORY_IMPLEMENTATION  0 
   47        void *(*create_object) (
void *data,
 
   60                                  size_t user_data_size);
 
void pw_impl_factory_destroy(struct pw_impl_factory *factory)
Definition impl-factory.c:64
 
int pw_impl_factory_update_properties(struct pw_impl_factory *factory, const struct spa_dict *dict)
Update the factory properties.
Definition impl-factory.c:135
 
const struct pw_factory_info * pw_impl_factory_get_info(struct pw_impl_factory *factory)
Get the factory info.
Definition impl-factory.c:218
 
void pw_impl_factory_set_implementation(struct pw_impl_factory *factory, const struct pw_impl_factory_implementation *implementation, void *data)
Definition impl-factory.c:239
 
void * pw_impl_factory_create_object(struct pw_impl_factory *factory, struct pw_resource *resource, const char *type, uint32_t version, struct pw_properties *properties, uint32_t new_id)
Definition impl-factory.c:247
 
struct pw_impl_factory * pw_context_create_factory(struct pw_context *context, const char *name, const char *type, uint32_t version, struct pw_properties *properties, size_t user_data_size)
Definition impl-factory.c:20
 
int pw_impl_factory_register(struct pw_impl_factory *factory, struct pw_properties *properties)
Definition impl-factory.c:158
 
void pw_impl_factory_add_listener(struct pw_impl_factory *factory, struct spa_hook *listener, const struct pw_impl_factory_events *events, void *data)
Add an event listener.
Definition impl-factory.c:230
 
struct pw_impl_factory * pw_context_find_factory(struct pw_context *context, const char *name)
Find a factory by name.
Definition impl-factory.c:273
 
struct pw_global * pw_impl_factory_get_global(struct pw_impl_factory *factory)
Get the global of this factory.
Definition impl-factory.c:224
 
void * pw_impl_factory_get_user_data(struct pw_impl_factory *factory)
Definition impl-factory.c:212
 
const struct pw_properties * pw_impl_factory_get_properties(struct pw_impl_factory *factory)
Get the factory properties.
Definition impl-factory.c:129
 
The factory information.
Definition factory.h:44
 
Factory events, listen to them with pw_impl_factory_add_listener.
Definition impl-factory.h:35
 
uint32_t version
Definition impl-factory.h:38
 
void(* initialized)(void *data)
the factory is initialized
Definition impl-factory.h:45
 
void(* destroy)(void *data)
the factory is destroyed
Definition impl-factory.h:41
 
void(* free)(void *data)
the factory is freed
Definition impl-factory.h:43
 
Definition impl-factory.h:48
 
uint32_t version
Definition impl-factory.h:51
 
Definition properties.h:33
 
A hook, contains the structure with functions and the data passed to the functions.
Definition hook.h:350