From dd78f3d5f73d3478a001d7751fa10499b6728164 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 26 Jul 2023 10:32:53 +0200 Subject: [PATCH] alsa: disable htimestamp by default It seems there are drivers that don't return a good values and we end up with a lot of delay or automatic disable of htimestamp when the values look too off. --- spa/plugins/alsa/alsa-pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/alsa/alsa-pcm.c b/spa/plugins/alsa/alsa-pcm.c index 3a944320e..b28e29f12 100644 --- a/spa/plugins/alsa/alsa-pcm.c +++ b/spa/plugins/alsa/alsa-pcm.c @@ -503,7 +503,7 @@ int spa_alsa_init(struct state *state, const struct spa_dict *info) snd_config_update_free_global(); state->multi_rate = true; - state->htimestamp = true; + state->htimestamp = false; for (i = 0; info && i < info->n_items; i++) { const char *k = info->items[i].key; const char *s = info->items[i].value;