PipeWire
0.2.0
|
Functions | |
const char * | pw_remote_state_as_string (enum pw_remote_state state) |
int | pw_remote_update_state (struct pw_remote *remote, enum pw_remote_state state, const char *fmt,...) |
Update the state of the remote, mostly used by protocols. More... | |
struct pw_remote * | pw_remote_new (struct pw_core *core, struct pw_properties *properties, size_t user_data_size) |
void | pw_remote_destroy (struct pw_remote *remote) |
struct pw_core * | pw_remote_get_core (struct pw_remote *remote) |
Get the core used to construct this remote. More... | |
const struct pw_properties * | pw_remote_get_properties (struct pw_remote *remote) |
Get the remote properties. More... | |
void * | pw_remote_get_user_data (struct pw_remote *remote) |
Get the user_data. More... | |
enum pw_remote_state | pw_remote_get_state (struct pw_remote *remote, const char **error) |
Get the current state, error is set when state is PW_REMOTE_STATE_ERROR. More... | |
void | pw_remote_add_listener (struct pw_remote *remote, struct spa_hook *listener, const struct pw_remote_events *events, void *data) |
Add listener for events. More... | |
struct pw_core_proxy * | pw_remote_get_core_proxy (struct pw_remote *remote) |
Get the core proxy, can only be called when connected. More... | |
const struct pw_core_info * | pw_remote_get_core_info (struct pw_remote *remote) |
Get the remote core info, can only be called when connected. More... | |
struct pw_proxy * | pw_remote_find_proxy (struct pw_remote *remote, uint32_t id) |
Get the proxy with the given id. More... | |
int | pw_remote_connect (struct pw_remote *remote) |
int | pw_remote_connect_fd (struct pw_remote *remote, int fd) |
int | pw_remote_steal_fd (struct pw_remote *remote) |
Steal the fd of the remote connection or < 0 on error. More... | |
int | pw_remote_disconnect (struct pw_remote *remote) |
struct pw_proxy * | pw_remote_export (struct pw_remote *remote, struct pw_node *node) |
run a local node in a remote graph More... | |
void pw_remote_add_listener | ( | struct pw_remote * | remote, |
struct spa_hook * | listener, | ||
const struct pw_remote_events * | events, | ||
void * | data | ||
) |
Add listener for events.
int pw_remote_connect | ( | struct pw_remote * | remote | ) |
References pw_protocol_client_connect, PW_REMOTE_STATE_CONNECTING, and pw_remote_update_state().
int pw_remote_connect_fd | ( | struct pw_remote * | remote, |
int | fd | ||
) |
void pw_remote_destroy | ( | struct pw_remote * | remote | ) |
int pw_remote_disconnect | ( | struct pw_remote * | remote | ) |
run a local node in a remote graph
Get the proxy with the given id.
References pw_map::pw_map_lookup().
Get the core used to construct this remote.
const struct pw_core_info* pw_remote_get_core_info | ( | struct pw_remote * | remote | ) |
Get the remote core info, can only be called when connected.
struct pw_core_proxy* pw_remote_get_core_proxy | ( | struct pw_remote * | remote | ) |
Get the core proxy, can only be called when connected.
const struct pw_properties* pw_remote_get_properties | ( | struct pw_remote * | remote | ) |
Get the remote properties.
enum pw_remote_state pw_remote_get_state | ( | struct pw_remote * | remote, |
const char ** | error | ||
) |
Get the current state, error is set when state is PW_REMOTE_STATE_ERROR.
void* pw_remote_get_user_data | ( | struct pw_remote * | remote | ) |
Get the user_data.
The size was given in pw_remote_new
struct pw_remote* pw_remote_new | ( | struct pw_core * | core, |
struct pw_properties * | properties, | ||
size_t | user_data_size | ||
) |
References pw_core_find_protocol(), pw_pipewire::pw_fill_remote_properties(), pw_log::pw_log_debug(), pw_log::pw_log_error(), pw_map::pw_map_init(), pw_module::pw_module_load(), pw_properties::pw_properties_free(), pw_properties::pw_properties_get(), pw_properties::pw_properties_new(), pw_protocol_new_client, PW_REMOTE_PROP_PROTOCOL, PW_REMOTE_STATE_UNCONNECTED, and impl::this.
const char* pw_remote_state_as_string | ( | enum pw_remote_state | state | ) |
int pw_remote_steal_fd | ( | struct pw_remote * | remote | ) |
Steal the fd of the remote connection or < 0 on error.
The remote will be in the unconnected state after this call.
References pw_protocol_client_steal_fd, and pw_remote::pw_remote_disconnect().
int pw_remote_update_state | ( | struct pw_remote * | remote, |
enum pw_remote_state | state, | ||
const char * | fmt, | ||
... | |||
) |
Update the state of the remote, mostly used by protocols.
References pw_log::pw_log_debug(), and pw_remote::pw_remote_state_as_string().
Referenced by pw_remote_connect(), pw_remote_connect_fd(), and pw_remote_disconnect().