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

Issue 2269873002: Avoid cluster set up at max bitrate at start (Closed)

Created:
4 years, 4 months ago by Irfan
Modified:
4 years, 3 months ago
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com
Base URL:
https://chromium.googlesource.com/external/webrtc.git@cleanup
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Avoid max bitrate probing when exponential probing in progress Avoid starting the max probing when there is an exponential probing session in progress. BUG=webrtc:6332 R=philipel@webrtc.org, stefan@webrtc.org Committed: https://crrev.com/9b7b75324f2deb9a17c1d25292123ae1f4021d9a Cr-Commit-Position: refs/heads/master@{#14268}

Patch Set 1 #

Total comments: 1

Patch Set 2 : Addressed nit #

Patch Set 3 : Avoid dependency on another CL and rebase #

Total comments: 5

Patch Set 4 : Rebase and add address nit #

Patch Set 5 : Rebased #

Patch Set 6 : Rework approach #

Patch Set 7 : Fix test #

Total comments: 4

Patch Set 8 : Fix nit #

Unified diffs Side-by-side diffs Delta from patch set Stats (+13 lines, -8 lines) Patch
M webrtc/modules/congestion_controller/probe_controller.cc View 1 2 3 4 5 6 7 1 chunk +7 lines, -5 lines 0 comments Download
M webrtc/modules/congestion_controller/probe_controller_unittest.cc View 1 2 3 4 5 6 7 3 chunks +6 lines, -3 lines 0 comments Download

Messages

Total messages: 23 (9 generated)
Irfan
I noticed in my testing that there was always probing being set up for max ...
4 years, 4 months ago (2016-08-23 05:20:19 UTC) #3
philipel
lgtm with one nit https://codereview.webrtc.org/2269873002/diff/1/webrtc/modules/congestion_controller/congestion_controller.cc File webrtc/modules/congestion_controller/congestion_controller.cc (right): https://codereview.webrtc.org/2269873002/diff/1/webrtc/modules/congestion_controller/congestion_controller.cc#newcode236 webrtc/modules/congestion_controller/congestion_controller.cc:236: // - we are mid-call, ...
4 years, 4 months ago (2016-08-23 10:55:28 UTC) #4
Irfan
Looks like stefan went on OOO. Magnus, need LGTM on this one.
4 years, 4 months ago (2016-08-23 22:42:25 UTC) #6
stefan-webrtc
https://codereview.webrtc.org/2269873002/diff/40001/webrtc/modules/congestion_controller/congestion_controller.cc File webrtc/modules/congestion_controller/congestion_controller.cc (right): https://codereview.webrtc.org/2269873002/diff/40001/webrtc/modules/congestion_controller/congestion_controller.cc#newcode242 webrtc/modules/congestion_controller/congestion_controller.cc:242: if (last_reported_bitrate_bps_ && != 0 https://codereview.webrtc.org/2269873002/diff/40001/webrtc/modules/congestion_controller/congestion_controller.cc#newcode244 webrtc/modules/congestion_controller/congestion_controller.cc:244: static_cast<uint32_t>(start_bitrate_bps_) && ...
4 years, 3 months ago (2016-09-02 13:49:15 UTC) #7
Irfan
https://codereview.chromium.org/2269873002/diff/40001/webrtc/modules/congestion_controller/congestion_controller.cc File webrtc/modules/congestion_controller/congestion_controller.cc (right): https://codereview.chromium.org/2269873002/diff/40001/webrtc/modules/congestion_controller/congestion_controller.cc#newcode242 webrtc/modules/congestion_controller/congestion_controller.cc:242: if (last_reported_bitrate_bps_ && On 2016/09/02 13:49:15, stefan-webrtc (holmer) wrote: ...
4 years, 3 months ago (2016-09-06 20:32:12 UTC) #8
Irfan
PTAL
4 years, 3 months ago (2016-09-06 21:11:32 UTC) #9
stefan-webrtc
https://codereview.chromium.org/2269873002/diff/40001/webrtc/modules/congestion_controller/congestion_controller.cc File webrtc/modules/congestion_controller/congestion_controller.cc (right): https://codereview.chromium.org/2269873002/diff/40001/webrtc/modules/congestion_controller/congestion_controller.cc#newcode244 webrtc/modules/congestion_controller/congestion_controller.cc:244: static_cast<uint32_t>(start_bitrate_bps_) && On 2016/09/06 20:32:12, Irfan wrote: > On ...
4 years, 3 months ago (2016-09-07 13:42:02 UTC) #10
Irfan
PTAL
4 years, 3 months ago (2016-09-14 18:36:07 UTC) #12
Irfan
PTAL
4 years, 3 months ago (2016-09-16 05:33:15 UTC) #13
stefan-webrtc
lgtm https://codereview.chromium.org/2269873002/diff/120001/webrtc/modules/congestion_controller/probe_controller_unittest.cc File webrtc/modules/congestion_controller/probe_controller_unittest.cc (right): https://codereview.chromium.org/2269873002/diff/120001/webrtc/modules/congestion_controller/probe_controller_unittest.cc#newcode57 webrtc/modules/congestion_controller/probe_controller_unittest.cc:57: clock_.AdvanceTimeMilliseconds(5000); Make 5000 a constant of ProbeController. https://codereview.chromium.org/2269873002/diff/120001/webrtc/modules/congestion_controller/probe_controller_unittest.cc#newcode77 ...
4 years, 3 months ago (2016-09-16 07:31:02 UTC) #14
Irfan
https://codereview.chromium.org/2269873002/diff/120001/webrtc/modules/congestion_controller/probe_controller_unittest.cc File webrtc/modules/congestion_controller/probe_controller_unittest.cc (right): https://codereview.chromium.org/2269873002/diff/120001/webrtc/modules/congestion_controller/probe_controller_unittest.cc#newcode57 webrtc/modules/congestion_controller/probe_controller_unittest.cc:57: clock_.AdvanceTimeMilliseconds(5000); On 2016/09/16 07:31:01, stefan-webrtc (holmer) wrote: > Make ...
4 years, 3 months ago (2016-09-16 16:26:28 UTC) #15
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/2269873002/140001
4 years, 3 months ago (2016-09-16 16:27:07 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_rel on master.tryserver.webrtc (JOB_TIMED_OUT, no build URL) android_dbg on ...
4 years, 3 months ago (2016-09-16 18:27:47 UTC) #20
Irfan
4 years, 3 months ago (2016-09-16 18:30:59 UTC) #22
Message was sent while issue was closed.
Committed patchset #8 (id:140001) manually as
9b7b75324f2deb9a17c1d25292123ae1f4021d9a (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698