Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Issue 2474913002: Logging basic bad call detection (Closed)

Created:
4 years, 1 month ago by palmkvist
Modified:
4 years ago
CC:
webrtc-reviews_webrtc.org, video-team_agora.io, yujie_mao (webrtc), zhengzhonghou_agora.io, stefan-webrtc, tterriberry_mozilla.com, perkj_webrtc, mflodman
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Logging basic bad call detection BUG=webrtc:6814 Committed: https://crrev.com/349092befe47a10d9179837d0de93c0334fe3088 Cr-Commit-Position: refs/heads/master@{#15568}

Patch Set 1 #

Patch Set 2 : Logging on state change #

Total comments: 9

Patch Set 3 : Rebase + double thresholds + variance calculation #

Patch Set 4 : Actual judgement + no high/low until certain #

Patch Set 5 : Rename + Tests #

Total comments: 6

Patch Set 6 : Comments #

Total comments: 11

Patch Set 7 : Comment + Rebase #

Total comments: 7

Patch Set 8 : Comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+343 lines, -0 lines) Patch
M webrtc/video/BUILD.gn View 1 2 3 4 5 6 2 chunks +3 lines, -0 lines 0 comments Download
A webrtc/video/quality_threshold.h View 1 2 3 4 1 chunk +49 lines, -0 lines 0 comments Download
A webrtc/video/quality_threshold.cc View 1 2 3 4 5 6 7 1 chunk +86 lines, -0 lines 0 comments Download
A webrtc/video/quality_threshold_unittest.cc View 1 2 3 4 5 1 chunk +97 lines, -0 lines 0 comments Download
M webrtc/video/receive_statistics_proxy.h View 1 2 3 4 5 6 4 chunks +9 lines, -0 lines 0 comments Download
M webrtc/video/receive_statistics_proxy.cc View 1 2 3 4 5 6 7 7 chunks +99 lines, -0 lines 0 comments Download

Messages

Total messages: 31 (13 generated)
palmkvist
Basic bad call detection and logging
4 years, 1 month ago (2016-11-03 15:54:33 UTC) #2
sprang_webrtc
Some initial comments. Let's continue discussion from here when we both remember the context better ...
4 years, 1 month ago (2016-11-14 13:14:16 UTC) #3
palmkvist
https://codereview.webrtc.org/2474913002/diff/20001/webrtc/video/bad_call_threshold.cc File webrtc/video/bad_call_threshold.cc (right): https://codereview.webrtc.org/2474913002/diff/20001/webrtc/video/bad_call_threshold.cc#newcode46 webrtc/video/bad_call_threshold.cc:46: } On 2016/11/14 13:14:15, språng wrote: > What tradeoffs ...
4 years, 1 month ago (2016-11-15 15:01:01 UTC) #4
sprang_webrtc
https://codereview.webrtc.org/2474913002/diff/20001/webrtc/video/bad_call_threshold.cc File webrtc/video/bad_call_threshold.cc (right): https://codereview.webrtc.org/2474913002/diff/20001/webrtc/video/bad_call_threshold.cc#newcode46 webrtc/video/bad_call_threshold.cc:46: } On 2016/11/15 15:01:01, palmkvist wrote: > On 2016/11/14 ...
4 years, 1 month ago (2016-11-16 13:20:10 UTC) #5
palmkvist
Threshold now only reports high or low when it's certain, e.g. if we start and ...
4 years, 1 month ago (2016-11-21 15:30:01 UTC) #6
palmkvist
First step: try to detect and log when the call appears bad to the user. ...
4 years ago (2016-11-24 13:22:13 UTC) #8
sprang_webrtc
https://codereview.webrtc.org/2474913002/diff/80001/webrtc/video/quality_threshold.cc File webrtc/video/quality_threshold.cc (right): https://codereview.webrtc.org/2474913002/diff/80001/webrtc/video/quality_threshold.cc#newcode43 webrtc/video/quality_threshold.cc:43: if (until_full_ <= 0 && prev_val <= low_threshold_) can ...
4 years ago (2016-11-24 16:25:21 UTC) #9
sprang_webrtc
lgtm Should follow this up with some histograms, will make it easier to track.
4 years ago (2016-11-28 14:34:12 UTC) #10
stefan-webrtc
Åsa should review this since it's touching receive_statistics_proxy.cc https://codereview.webrtc.org/2474913002/diff/100001/webrtc/video/quality_threshold.cc File webrtc/video/quality_threshold.cc (right): https://codereview.webrtc.org/2474913002/diff/100001/webrtc/video/quality_threshold.cc#newcode41 webrtc/video/quality_threshold.cc:41: sum_ ...
4 years ago (2016-11-28 15:55:25 UTC) #12
palmkvist
https://codereview.webrtc.org/2474913002/diff/100001/webrtc/video/receive_statistics_proxy.cc File webrtc/video/receive_statistics_proxy.cc (right): https://codereview.webrtc.org/2474913002/diff/100001/webrtc/video/receive_statistics_proxy.cc#newcode31 webrtc/video/receive_statistics_proxy.cc:31: const int kLowQpThreshold = 60; On 2016/11/28 15:55:25, stefan-webrtc ...
4 years ago (2016-12-01 13:03:45 UTC) #13
stefan-webrtc
https://codereview.webrtc.org/2474913002/diff/100001/webrtc/video/receive_statistics_proxy.cc File webrtc/video/receive_statistics_proxy.cc (right): https://codereview.webrtc.org/2474913002/diff/100001/webrtc/video/receive_statistics_proxy.cc#newcode31 webrtc/video/receive_statistics_proxy.cc:31: const int kLowQpThreshold = 60; On 2016/12/01 13:03:45, palmkvist ...
4 years ago (2016-12-02 09:31:55 UTC) #14
åsapersson
https://codereview.webrtc.org/2474913002/diff/120001/webrtc/video/quality_threshold.cc File webrtc/video/quality_threshold.cc (right): https://codereview.webrtc.org/2474913002/diff/120001/webrtc/video/quality_threshold.cc#newcode33 webrtc/video/quality_threshold.cc:33: RTC_CHECK_LT(low_threshold, high_threshold); RTC_CHECK max_measurements > 1 https://codereview.webrtc.org/2474913002/diff/120001/webrtc/video/receive_statistics_proxy.cc File webrtc/video/receive_statistics_proxy.cc ...
4 years ago (2016-12-07 15:34:51 UTC) #20
palmkvist
https://codereview.webrtc.org/2474913002/diff/120001/webrtc/video/receive_statistics_proxy.cc File webrtc/video/receive_statistics_proxy.cc (right): https://codereview.webrtc.org/2474913002/diff/120001/webrtc/video/receive_statistics_proxy.cc#newcode210 webrtc/video/receive_statistics_proxy.cc:210: int qp = qp_sample_.Avg(1); On 2016/12/07 15:34:51, åsapersson wrote: ...
4 years ago (2016-12-08 14:15:02 UTC) #21
åsapersson
lgtm
4 years ago (2016-12-12 12:10:06 UTC) #22
stefan-webrtc
lgtm
4 years ago (2016-12-13 10:25:09 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2474913002/140001
4 years ago (2016-12-13 10:26:39 UTC) #26
commit-bot: I haz the power
Committed patchset #8 (id:140001)
4 years ago (2016-12-13 10:46:02 UTC) #29
commit-bot: I haz the power
4 years ago (2016-12-13 10:46:13 UTC) #31
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/349092befe47a10d9179837d0de93c0334fe3088
Cr-Commit-Position: refs/heads/master@{#15568}

Powered by Google App Engine
This is Rietveld 408576698