From 881595a9671a95986c75609608ed2f75b02f30af Mon Sep 17 00:00:00 2001 From: raspy Date: Fri, 26 Jan 2024 07:08:33 -0800 Subject: [PATCH] Yolo 2 --- models/latencyLevels.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/latencyLevels.go b/models/latencyLevels.go index 9a346b959..c56550b86 100644 --- a/models/latencyLevels.go +++ b/models/latencyLevels.go @@ -10,7 +10,7 @@ type LatencyLevel struct { // GetLatencyConfigs will return the available latency level options. func GetLatencyConfigs() map[int]LatencyLevel { return map[int]LatencyLevel{ - 0: {Level: 0, SecondsPerSegment: 1, SegmentCount: 10}, // Approx 5 seconds + 0: {Level: 0, SecondsPerSegment: 1, SegmentCount: 3}, // Approx 5 seconds 1: {Level: 1, SecondsPerSegment: 2, SegmentCount: 15}, // Approx 8-9 seconds 2: {Level: 2, SecondsPerSegment: 3, SegmentCount: 10}, // Default Approx 10 seconds 3: {Level: 3, SecondsPerSegment: 4, SegmentCount: 8}, // Approx 15 seconds