summaryrefslogtreecommitdiffstats
path: root/discover.c
diff options
context:
space:
mode:
Diffstat (limited to 'discover.c')
-rw-r--r--discover.c24
1 files changed, 22 insertions, 2 deletions
diff --git a/discover.c b/discover.c
index eea6986..93a5d8b 100644
--- a/discover.c
+++ b/discover.c
@@ -757,6 +757,26 @@ void pa_discover_add_sink_input (struct userdata *u, pa_sink_input *sinp)
node = agl_node_get_from_client (u, sinp->client);
if (!node) return;
- /* start the default routing */
- implement_default_route (u, node, NULL, pa_utils_new_stamp ());
+ /* start routing */
+ agl_router_register_node (u, node);
+}
+
+void pa_discover_remove_sink_input (struct userdata *u, pa_sink_input *sinp)
+{
+ pa_core *core;
+ agl_node *node;
+
+ pa_assert (u);
+ pa_assert (sinp);
+ pa_assert_se (core = u->core);
+
+ if (!sinp->client)
+ return;
+
+ /* is there an existing matching node ? */
+ node = agl_node_get_from_client (u, sinp->client);
+ if (!node) return;
+
+ /* stop routing */
+ agl_router_unregister_node (u, node);
}