mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-05-05 13:38:02 +02:00
Fix no return statement warnings
This commit is contained in:
parent
220b95fb05
commit
92dc9d5cdf
3 changed files with 5 additions and 0 deletions
|
|
@ -44,6 +44,8 @@ simple_endpoint_link_create (WpEndpointLink * self, GVariant * src_data,
|
|||
GVariant * sink_data, GError ** error)
|
||||
{
|
||||
/* TODO create pw_links based on the nodes & ports described in src/sink_data */
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -95,6 +95,8 @@ simple_endpoint_prepare_link (WpEndpoint * self, guint32 stream_id,
|
|||
{
|
||||
/* TODO: verify that the remote end supports the same media type */
|
||||
/* TODO: fill @properties with (node id, array(port ids)) */
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ static gboolean
|
|||
endpoint_prepare_link (WpEndpoint * self, guint32 stream_id,
|
||||
WpEndpointLink * link, GVariant ** properties, GError ** error)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue