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

Issue 2121183002: New ProbingCalculator class. (Closed)

Created:
4 years, 5 months ago by philipel
Modified:
4 years, 4 months ago
CC:
webrtc-reviews_webrtc.org, tterriberry_mozilla.com, zhuangzesen_agora.io, stefan-webrtc, mflodman, terelius
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

New ProbingCalculator class. The ProbingCalculator class calculates and validates the results from probing attempts. BUG=webrtc:5859 Committed: https://crrev.com/233c4ba4fd294822fd878847feee596c2922d4c9 Cr-Commit-Position: refs/heads/master@{#13589}

Patch Set 1 #

Patch Set 2 : Clean up #

Total comments: 1

Patch Set 3 : Interface for result callback. #

Patch Set 4 : Compile fixes. #

Total comments: 11

Patch Set 5 : Feedback fixes. #

Total comments: 2

Patch Set 6 : Calculate send/receive rate using floats. #

Total comments: 5

Patch Set 7 : Added kMaxNumSavedClusters. #

Total comments: 10

Patch Set 8 : Removed callback, return result instead. #

Total comments: 2

Patch Set 9 : Renamed ProbingCalculator to ProbeBitrateEstimator. #

Patch Set 10 : Rebase #

Patch Set 11 : BUILD estiamtor to estimator. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+298 lines, -1 line) Patch
M webrtc/modules/congestion_controller/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/congestion_controller/congestion_controller.gypi View 1 2 3 4 5 6 7 8 1 chunk +3 lines, -1 line 0 comments Download
A webrtc/modules/congestion_controller/probe_bitrate_controller_unittest.cc View 1 2 3 4 5 6 7 8 1 chunk +127 lines, -0 lines 0 comments Download
A webrtc/modules/congestion_controller/probe_bitrate_estimator.h View 1 2 3 4 5 6 7 8 1 chunk +56 lines, -0 lines 0 comments Download
A webrtc/modules/congestion_controller/probe_bitrate_estimator.cc View 1 2 3 4 5 6 7 8 1 chunk +109 lines, -0 lines 0 comments Download
M webrtc/modules/modules.gyp View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 46 (18 generated)
philipel
4 years, 5 months ago (2016-07-05 12:19:42 UTC) #2
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2121183002/40001
4 years, 5 months ago (2016-07-06 07:54:33 UTC) #4
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_compile_x86_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_compile_x86_dbg/builds/5153)
4 years, 5 months ago (2016-07-06 07:59:24 UTC) #6
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2121183002/60001
4 years, 5 months ago (2016-07-06 08:21:44 UTC) #8
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 5 months ago (2016-07-06 09:22:41 UTC) #10
philipel
4 years, 5 months ago (2016-07-07 09:07:52 UTC) #12
brandtr
https://codereview.webrtc.org/2121183002/diff/60001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/60001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode22 webrtc/modules/congestion_controller/probing_calculator.cc:22: constexpr float kValidRatio = 1.2f; Is there a motivation ...
4 years, 5 months ago (2016-07-07 14:58:31 UTC) #13
philipel
https://codereview.webrtc.org/2121183002/diff/60001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/60001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode22 webrtc/modules/congestion_controller/probing_calculator.cc:22: constexpr float kValidRatio = 1.2f; On 2016/07/07 14:58:30, brandtr ...
4 years, 5 months ago (2016-07-08 09:27:48 UTC) #14
brandtr
https://codereview.webrtc.org/2121183002/diff/60001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/60001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode22 webrtc/modules/congestion_controller/probing_calculator.cc:22: constexpr float kValidRatio = 1.2f; On 2016/07/08 09:27:48, philipel ...
4 years, 5 months ago (2016-07-08 09:39:21 UTC) #15
philipel
https://codereview.webrtc.org/2121183002/diff/80001/webrtc/modules/congestion_controller/probing_calculator.h File webrtc/modules/congestion_controller/probing_calculator.h (right): https://codereview.webrtc.org/2121183002/diff/80001/webrtc/modules/congestion_controller/probing_calculator.h#newcode43 webrtc/modules/congestion_controller/probing_calculator.h:43: float size = 0; On 2016/07/08 09:39:21, brandtr wrote: ...
4 years, 5 months ago (2016-07-08 10:49:17 UTC) #16
brandtr
lgtm
4 years, 5 months ago (2016-07-08 10:50:44 UTC) #17
terelius
Nice! https://codereview.webrtc.org/2121183002/diff/100001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/100001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode50 webrtc/modules/congestion_controller/probing_calculator.cc:50: if (cluster->num_probes < kMinNumProbesValidCluster) Question about future follow ...
4 years, 5 months ago (2016-07-11 10:07:48 UTC) #18
philipel
https://codereview.webrtc.org/2121183002/diff/100001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/100001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode50 webrtc/modules/congestion_controller/probing_calculator.cc:50: if (cluster->num_probes < kMinNumProbesValidCluster) On 2016/07/11 10:07:48, terelius wrote: ...
4 years, 5 months ago (2016-07-11 11:18:55 UTC) #20
terelius
lgtm https://codereview.webrtc.org/2121183002/diff/100001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/100001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode50 webrtc/modules/congestion_controller/probing_calculator.cc:50: if (cluster->num_probes < kMinNumProbesValidCluster) On 2016/07/11 11:18:55, philipel ...
4 years, 5 months ago (2016-07-11 11:34:51 UTC) #22
philipel
ping
4 years, 5 months ago (2016-07-15 10:34:59 UTC) #23
stefan-webrtc
https://codereview.webrtc.org/2121183002/diff/20001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/20001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode91 webrtc/modules/congestion_controller/probing_calculator.cc:91: << " kB/s]" kbps or possibly kb/s (but the ...
4 years, 5 months ago (2016-07-15 11:05:31 UTC) #24
terelius
https://codereview.webrtc.org/2121183002/diff/120001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/120001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode78 webrtc/modules/congestion_controller/probing_calculator.cc:78: LOG(LS_INFO) << "Probing unsuccessful, receive/send ratio to high!" On ...
4 years, 5 months ago (2016-07-15 11:13:01 UTC) #25
philipel
https://codereview.webrtc.org/2121183002/diff/120001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/120001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode65 webrtc/modules/congestion_controller/probing_calculator.cc:65: LOG(LS_INFO) << "Probing unsuccessful, invalid send/receive interval!" On 2016/07/15 ...
4 years, 5 months ago (2016-07-15 12:54:19 UTC) #26
philipel
ping
4 years, 4 months ago (2016-08-01 10:46:25 UTC) #27
terelius
still lgtm
4 years, 4 months ago (2016-08-01 10:51:22 UTC) #28
stefan-webrtc
lgtm, but consider my nits. https://codereview.webrtc.org/2121183002/diff/140001/webrtc/modules/congestion_controller/probing_calculator.cc File webrtc/modules/congestion_controller/probing_calculator.cc (right): https://codereview.webrtc.org/2121183002/diff/140001/webrtc/modules/congestion_controller/probing_calculator.cc#newcode82 webrtc/modules/congestion_controller/probing_calculator.cc:82: float ratio = receive_bps ...
4 years, 4 months ago (2016-08-01 10:55:35 UTC) #29
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/2121183002/160001
4 years, 4 months ago (2016-08-01 11:52:20 UTC) #32
commit-bot: I haz the power
Try jobs failed on following builders: android_compile_x86_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_compile_x86_dbg/builds/5578) linux_baremetal on master.tryserver.webrtc (JOB_FAILED, ...
4 years, 4 months ago (2016-08-01 11:53:30 UTC) #34
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/2121183002/180001
4 years, 4 months ago (2016-08-01 13:27:45 UTC) #37
commit-bot: I haz the power
Try jobs failed on following builders: linux_libfuzzer_rel on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/linux_libfuzzer_rel/builds/4204) mac_gn_rel on master.tryserver.webrtc (JOB_FAILED, ...
4 years, 4 months ago (2016-08-01 13:29:16 UTC) #39
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/2121183002/200001
4 years, 4 months ago (2016-08-01 13:53:39 UTC) #42
commit-bot: I haz the power
Committed patchset #11 (id:200001)
4 years, 4 months ago (2016-08-01 15:49:11 UTC) #44
commit-bot: I haz the power
4 years, 4 months ago (2016-08-01 15:49:19 UTC) #46
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/233c4ba4fd294822fd878847feee596c2922d4c9
Cr-Commit-Position: refs/heads/master@{#13589}

Powered by Google App Engine
This is Rietveld 408576698