From 71e9c2bb049900049e7e0d2e64be836432bbd10d Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Thu, 2 May 2024 17:03:04 +0200 Subject: [PATCH] rtpgccbwe: Also log `self.measure` in overuse_filter() Also log `self.measure` in overuse_filter() since tracking `self.measure` over time help a lot in making sense of `self.estimate` (and `amplified_estimate`). Part-of: --- net/rtp/src/gcc/imp.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/rtp/src/gcc/imp.rs b/net/rtp/src/gcc/imp.rs index 0ea6a972..a12ff76c 100644 --- a/net/rtp/src/gcc/imp.rs +++ b/net/rtp/src/gcc/imp.rs @@ -646,8 +646,9 @@ impl Detector { } gst::log!( CAT, - "{:?} - self.estimate {} - estimate: {} - th: {} - inc_dur: {} - inc_cnt: {}", + "{:?} - measure: {} - estimate: {} - amp_est: {} - th: {} - inc_dur: {} - inc_cnt: {}", th_usage, + self.measure, self.estimate, amplified_estimate, self.threshold,