From 05ea4520e699a9eb8e24d7268e398cd0c1f12617 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 14 Jun 2023 16:57:13 +0200 Subject: [PATCH] audioconvert: improve debug --- spa/plugins/audioconvert/audioconvert.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/spa/plugins/audioconvert/audioconvert.c b/spa/plugins/audioconvert/audioconvert.c index 252740d0a..a645d34f7 100644 --- a/spa/plugins/audioconvert/audioconvert.c +++ b/spa/plugins/audioconvert/audioconvert.c @@ -2584,7 +2584,10 @@ static int impl_node_process(void *object) r = 1.0; } if (this->rate_scale != r) { - spa_log_info(this->log, "scale %f->%f", this->rate_scale, r); + spa_log_info(this->log, "scale graph:%u in:%u out:%u scale:%f->%f", + this->io_position->clock.rate.denom, + this->resample.i_rate, this->resample.o_rate, + this->rate_scale, r); this->rate_scale = r; } }