Antonio Larrosa
b0d3a20766
- Add another patch from upstream: * 0011-default-nodes-add-more-logs.patch OBS-URL: https://build.opensuse.org/request/show/948949 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/wireplumber?expand=0&rev=26
54 lines
1.8 KiB
Diff
54 lines
1.8 KiB
Diff
From b4245d64c5117015fa293148273f86bdfbeb494f Mon Sep 17 00:00:00 2001
|
|
From: Julian Bouzas <julian.bouzas@collabora.com>
|
|
Date: Wed, 12 Jan 2022 13:39:57 -0500
|
|
Subject: [PATCH 11/14] default-nodes: add more logs
|
|
|
|
---
|
|
modules/module-default-nodes.c | 14 ++++++++++++--
|
|
1 file changed, 12 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/modules/module-default-nodes.c b/modules/module-default-nodes.c
|
|
index 354c474..ac9a87b 100644
|
|
--- a/modules/module-default-nodes.c
|
|
+++ b/modules/module-default-nodes.c
|
|
@@ -401,8 +401,13 @@ nodes_ready (WpDefaultNodes * self)
|
|
ready_nodes++;
|
|
}
|
|
|
|
- if (ready_nodes < total_nodes)
|
|
+ if (ready_nodes < total_nodes) {
|
|
+ const gchar *device_name = wp_pipewire_object_get_property (
|
|
+ WP_PIPEWIRE_OBJECT (device), PW_KEY_DEVICE_NAME);
|
|
+ wp_debug_object (self, "device '%s' is not ready (%d/%d)", device_name,
|
|
+ ready_nodes, total_nodes);
|
|
return FALSE;
|
|
+ }
|
|
}
|
|
}
|
|
|
|
@@ -424,8 +429,12 @@ nodes_ready (WpDefaultNodes * self)
|
|
NULL);
|
|
if (!port &&
|
|
(g_strcmp0 ("Audio/Source/Virtual", media_class) == 0 ||
|
|
- g_strcmp0 ("Video/Source/Virtual", media_class) == 0))
|
|
+ g_strcmp0 ("Video/Source/Virtual", media_class) == 0)) {
|
|
+ const gchar *node_name = wp_pipewire_object_get_property (
|
|
+ WP_PIPEWIRE_OBJECT (node), PW_KEY_NODE_NAME);
|
|
+ wp_debug_object (self, "virtual node '%s' is not ready", node_name);
|
|
return FALSE;
|
|
+ }
|
|
}
|
|
}
|
|
|
|
@@ -465,6 +474,7 @@ schedule_rescan (WpDefaultNodes * self)
|
|
g_autoptr (WpCore) core = wp_object_get_core (WP_OBJECT (self));
|
|
g_return_if_fail (core);
|
|
|
|
+ wp_debug_object (self, "scheduling default nodes rescan");
|
|
wp_core_sync_closure (core, NULL, g_cclosure_new_object (
|
|
G_CALLBACK (sync_rescan), G_OBJECT (self)));
|
|
}
|
|
--
|
|
2.34.1
|
|
|