From 0550537ce00136ba56fc61cd279616f57935489b Mon Sep 17 00:00:00 2001 From: Carlos Rafael Giani Date: Tue, 26 May 2026 11:40:56 +0200 Subject: [PATCH] node-driver: Increase DLL speed by using SPA_DLL_BW_MAX This allows the DLL to react faster to clock pace changes. --- spa/plugins/support/node-driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/support/node-driver.c b/spa/plugins/support/node-driver.c index c3e976e55..5180b113a 100644 --- a/spa/plugins/support/node-driver.c +++ b/spa/plugins/support/node-driver.c @@ -484,7 +484,7 @@ static void on_timeout(struct spa_source *source) spa_log_warn(this->log, "err %f > max_resync %f, resetting", err, this->max_resync); } - spa_dll_set_bw(&this->dll, SPA_DLL_BW_MIN, duration, rate); + spa_dll_set_bw(&this->dll, SPA_DLL_BW_MAX, duration, rate); position = current_position; err = 0.0; } else {