From 7479ff586c6d30c9ea84d7374fa241dbed6a6bf4 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 17 Jan 2024 09:45:56 +0100 Subject: [PATCH] stream: debug added params --- src/pipewire/filter.c | 2 ++ src/pipewire/stream.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/pipewire/filter.c b/src/pipewire/filter.c index 7412aedd4..e87b8f23d 100644 --- a/src/pipewire/filter.c +++ b/src/pipewire/filter.c @@ -235,6 +235,8 @@ static int add_param(struct filter *impl, struct port *port, if (param == NULL || !spa_pod_object_has_props((struct spa_pod_object*)param)) return 0; + pw_log_pod(SPA_LOG_LEVEL_DEBUG, param); + if (id == SPA_ID_INVALID) id = SPA_POD_OBJECT_ID(param); diff --git a/src/pipewire/stream.c b/src/pipewire/stream.c index 4165bdac4..c6965cfd0 100644 --- a/src/pipewire/stream.c +++ b/src/pipewire/stream.c @@ -239,6 +239,8 @@ static int add_param(struct stream *impl, if (param == NULL || !spa_pod_object_has_props((struct spa_pod_object*)param)) return 0; + pw_log_pod(SPA_LOG_LEVEL_DEBUG, param); + if (id == SPA_ID_INVALID) id = SPA_POD_OBJECT_ID(param);