From d4515378e7a3342a492f75773b4087291075f1d0 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 12 Jul 2024 12:24:56 +0200 Subject: [PATCH] node-driver: 5 seconds of freewheel timeout is enough We retry to run the graph every 5 seconds in case it didn't complete. A 10 seconds timeout feels quite long. --- 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 4b94fd79d..c8777caa3 100644 --- a/spa/plugins/support/node-driver.c +++ b/spa/plugins/support/node-driver.c @@ -33,7 +33,7 @@ SPA_LOG_TOPIC_DEFINE_STATIC(log_topic, "spa.driver"); #define SPA_LOG_TOPIC_DEFAULT &log_topic #define DEFAULT_FREEWHEEL false -#define DEFAULT_FREEWHEEL_WAIT 10 +#define DEFAULT_FREEWHEEL_WAIT 5 #define DEFAULT_CLOCK_PREFIX "clock.system" #define DEFAULT_CLOCK_ID CLOCK_MONOTONIC #define DEFAULT_RESYNC_MS 10