From e9051e12827520e69fb72f67426264712ec90f5a Mon Sep 17 00:00:00 2001 From: Benjamin Pracht Date: Tue, 18 Mar 2025 20:20:34 -0700 Subject: [PATCH] Disable output queue length monitoring for RTMP and WHIP --- pkg/params/params.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/params/params.go b/pkg/params/params.go index 16d08235..351beeec 100644 --- a/pkg/params/params.go +++ b/pkg/params/params.go @@ -192,7 +192,8 @@ func getLive(info *livekit.IngressInfo) bool { return true } default: - return true + // TODO RTMP and WHIP should use the live mode but more work is needed on the pipeline sample timestamp fugding/dropping to avoid A/V sync issues + return false } }