Home
last modified time | relevance | path

Searched refs:rttMs (Results 1 – 25 of 114) sorted by relevance

12345

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { in Update() argument
58 if (rttMs == 0) { in Update()
65 if (rttMs > 3000) { in Update()
66 rttMs = 3000; in Update()
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt); in Update()
85 _maxRtt = VCM_MAX(rttMs, _maxRtt); in Update()
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) { in Update()
93 bool VCMRttFilter::JumpDetection(int64_t rttMs) { in JumpDetection() argument
94 double diffFromAvg = _avgRtt - rttMs; in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
[all …]
H A Drtt_filter.h27 void Update(int64_t rttMs);
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
H A Djitter_estimator.h59 void UpdateRtt(int64_t rttMs);
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { in Update() argument
58 if (rttMs == 0) { in Update()
65 if (rttMs > 3000) { in Update()
66 rttMs = 3000; in Update()
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt); in Update()
85 _maxRtt = VCM_MAX(rttMs, _maxRtt); in Update()
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) { in Update()
93 bool VCMRttFilter::JumpDetection(int64_t rttMs) { in JumpDetection() argument
94 double diffFromAvg = _avgRtt - rttMs; in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
[all …]
H A Drtt_filter.h27 void Update(int64_t rttMs);
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { in Update() argument
58 if (rttMs == 0) { in Update()
65 if (rttMs > 3000) { in Update()
66 rttMs = 3000; in Update()
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt); in Update()
85 _maxRtt = VCM_MAX(rttMs, _maxRtt); in Update()
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) { in Update()
93 bool VCMRttFilter::JumpDetection(int64_t rttMs) { in JumpDetection() argument
94 double diffFromAvg = _avgRtt - rttMs; in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
[all …]
H A Drtt_filter.h27 void Update(int64_t rttMs);
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { in Update() argument
58 if (rttMs == 0) { in Update()
65 if (rttMs > 3000) { in Update()
66 rttMs = 3000; in Update()
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt); in Update()
85 _maxRtt = VCM_MAX(rttMs, _maxRtt); in Update()
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) { in Update()
93 bool VCMRttFilter::JumpDetection(int64_t rttMs) { in JumpDetection() argument
94 double diffFromAvg = _avgRtt - rttMs; in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
[all …]
H A Drtt_filter.h27 void Update(int64_t rttMs);
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { in Update() argument
58 if (rttMs == 0) { in Update()
65 if (rttMs > 3000) { in Update()
66 rttMs = 3000; in Update()
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt); in Update()
85 _maxRtt = VCM_MAX(rttMs, _maxRtt); in Update()
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) { in Update()
93 bool VCMRttFilter::JumpDetection(int64_t rttMs) { in JumpDetection() argument
94 double diffFromAvg = _avgRtt - rttMs; in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
[all …]
H A Drtt_filter.h27 void Update(int64_t rttMs);
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/modules/video_coding/main/source/
H A Drtt_filter.cc61 VCMRttFilter::Update(int64_t rttMs)
65 if (rttMs == 0)
73 if (rttMs > 3000)
75 rttMs = 3000;
95 (rttMs - _avgRtt) * (rttMs - _avgRtt);
96 _maxRtt = VCM_MAX(rttMs, _maxRtt);
97 if (!JumpDetection(rttMs) || !DriftDetection(rttMs))
106 VCMRttFilter::JumpDetection(int64_t rttMs)
108 double diffFromAvg = _avgRtt - rttMs;
150 VCMRttFilter::DriftDetection(int64_t rttMs)
[all …]
H A Drtt_filter.h29 void Update(int64_t rttMs);
42 bool JumpDetection(int64_t rttMs);
47 bool DriftDetection(int64_t rttMs);
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { in Update() argument
58 if (rttMs == 0) { in Update()
65 if (rttMs > 3000) { in Update()
66 rttMs = 3000; in Update()
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt); in Update()
85 _maxRtt = VCM_MAX(rttMs, _maxRtt); in Update()
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) { in Update()
93 bool VCMRttFilter::JumpDetection(int64_t rttMs) { in JumpDetection() argument
94 double diffFromAvg = _avgRtt - rttMs; in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
[all …]
H A Drtt_filter.h27 void Update(int64_t rttMs);
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { in Update() argument
58 if (rttMs == 0) { in Update()
65 if (rttMs > 3000) { in Update()
66 rttMs = 3000; in Update()
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt); in Update()
85 _maxRtt = VCM_MAX(rttMs, _maxRtt); in Update()
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) { in Update()
93 bool VCMRttFilter::JumpDetection(int64_t rttMs) { in JumpDetection() argument
94 double diffFromAvg = _avgRtt - rttMs; in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
[all …]
H A Drtt_filter.h27 void Update(int64_t rttMs);
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/modules/video_coding/
H A Drtt_filter.cc56 void VCMRttFilter::Update(int64_t rttMs) { in Update() argument
58 if (rttMs == 0) { in Update()
65 if (rttMs > 3000) { in Update()
66 rttMs = 3000; in Update()
84 (1 - filtFactor) * (rttMs - _avgRtt) * (rttMs - _avgRtt); in Update()
85 _maxRtt = VCM_MAX(rttMs, _maxRtt); in Update()
86 if (!JumpDetection(rttMs) || !DriftDetection(rttMs)) { in Update()
93 bool VCMRttFilter::JumpDetection(int64_t rttMs) { in JumpDetection() argument
94 double diffFromAvg = _avgRtt - rttMs; in JumpDetection()
110 _jumpBuf[abs(_jumpCount)] = rttMs; in JumpDetection()
[all …]
H A Drtt_filter.h27 void Update(int64_t rttMs);
40 bool JumpDetection(int64_t rttMs);
45 bool DriftDetection(int64_t rttMs);
/dports/net-im/jitsi-videobridge/jitsi-videobridge-dbddd16/src/main/java/org/jitsi/videobridge/eventadmin/callstats/
H A DConferencePeriodicRunnable.java78 int rttMs in getEndpointStats() local
90 receiveStats.rtt_ms = rttMs; in getEndpointStats()
108 sendStats.rtt_ms = rttMs; in getEndpointStats()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/voice_engine/test/auto_test/
H A Dvoe_conference_test.cc95 if (IsNear(kRttMs, stats_1.rttMs, kRttMs / 10 + 1) && in TEST()
96 IsNear(kRttMs, stats_2.rttMs, kRttMs / 10 + 1) && in TEST()
105 stats_buffer.push(Stats(stats_1.rttMs, stats_2.rttMs, in TEST()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/voice_engine/include/
H A Dvoe_rtp_rtcp.h71 int64_t rttMs; member
177 int32_t& rttMs) = 0;
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cronet/android/api/src/org/chromium/net/
H A DNetworkQualityRttListener.java43 public abstract void onRttObservation(int rttMs, long whenMs, int source); in onRttObservation() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cronet/android/test/javatests/src/org/chromium/net/
H A DTestNetworkQualityRttListener.java38 public void onRttObservation(int rttMs, long when, int source) { in onRttObservation() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cronet/android/java/src/org/chromium/net/impl/
H A DVersionSafeCallbacks.java214 public void onRttObservation(int rttMs, long whenMs, int source) { in onRttObservation() argument
215 mWrappedListener.onRttObservation(rttMs, whenMs, source); in onRttObservation()

12345