Cleanup trailing whitespaces

This commit is contained in:
George Kiagiadakis 2019-06-11 10:11:24 +03:00
parent aa0cfbeb76
commit 80831c9320
3 changed files with 12 additions and 12 deletions

View file

@ -28,7 +28,7 @@ struct _WpPipewireSimpleEndpoint
struct pw_node_proxy *node;
struct spa_hook proxy_listener;
struct spa_hook node_proxy_listener;
/* Info */
struct pw_node_info *info;

View file

@ -79,7 +79,7 @@ static void done_data_destroy(gpointer p) {
static void sync_core_with_callabck(struct impl* impl,
WpDoneCallback callback, gpointer data, GDestroyNotify data_destroy) {
struct done_data *dd = g_new0(struct done_data, 1);
/* Set the data */
dd->callback = callback;
dd->data = data;
@ -139,7 +139,7 @@ static void enum_format_and_create_endpoint(gpointer p) {
if (port->parent_id == ei->id)
break;
}
/* Emit the port EnumFormat */
pw_port_proxy_enum_params((struct pw_port_proxy*)port->proxy, 0,
SPA_PARAM_EnumFormat, 0, -1, NULL);
@ -233,7 +233,7 @@ handle_port(struct impl *impl, uint32_t id, uint32_t parent_id,
struct pw_proxy *proxy;
WpPort *port;
const char *direction_prop;
/* Make sure the port has porperties */
if (!props)
return;

View file

@ -24,7 +24,7 @@
struct _WpPwAudioSoftdspEndpoint {
WpEndpoint parent;
/* The core proxy */
struct pw_core_proxy *core_proxy;
@ -43,7 +43,7 @@ struct _WpPwAudioSoftdspEndpoint {
/* DSP proxy and listener */
struct pw_proxy *dsp_proxy;
struct spa_hook dsp_listener;
/* DSP info */
struct pw_node_info *dsp_info;
@ -102,7 +102,7 @@ endpoint_prepare_link (WpEndpoint * ep, guint32 stream_id,
}
if (!node_port)
return FALSE;
/* Find the first dsp port with the same direction as the node port */
spa_list_for_each(port, self->port_list, l) {
if (self->dsp_info->id == port->parent_id
@ -175,7 +175,7 @@ static void dsp_node_event_info(void *data, const struct pw_node_info *info)
/* Set dsp info */
self->dsp_info = pw_node_info_update(self->dsp_info, info);
/* Handle the different states */
switch (info->state) {
case PW_NODE_STATE_IDLE:
@ -202,11 +202,11 @@ static void emit_audio_dsp_node(WpPwAudioSoftdspEndpoint *self)
uint8_t buf[1024];
struct spa_pod_builder pod_builder = { 0, };
struct spa_pod *param;
/* Return if the node has been already emitted */
if (self->dsp_proxy)
return;
/* Get the properties */
props = pw_properties_new_dict(self->node_info->props);
if (!props)
@ -237,8 +237,8 @@ static void emit_audio_dsp_node(WpPwAudioSoftdspEndpoint *self)
SPA_PARAM_PROFILE_format, SPA_POD_Pod(param));
pw_node_proxy_set_param((struct pw_node_proxy*)self->dsp_proxy,
SPA_PARAM_Profile, 0, param);
/* Clean up */
/* Clean up */
pw_properties_free(props);
}