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

Issue 2234363002: Removed old probe cluster logic and logic related to ssrcs from DelayBasedBwe. (Closed)

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

Description

Removed old probe cluster logic and logic related to ssrcs from DelayBasedBwe. -Removed the old probe cluster logic and use the new ProbeBitrateEstimator instead. -Removed all logic related to ssrcs from DelayBasedBwe as they have no function on the sender side. BUG=webrtc:5859 R=stefan@webrtc.org, terelius@webrtc.org Committed: https://crrev.com/7522a2805118b561322a9ac7d37cec8e8eea06e3 Cr-Commit-Position: refs/heads/master@{#13771}

Patch Set 1 #

Total comments: 22

Patch Set 2 : Feedback fixes. #

Patch Set 3 : Added comment for kFixedSsrc. #

Total comments: 2

Patch Set 4 : Feedback fixes. #

Patch Set 5 : Nit fix. #

Patch Set 6 : Win fix. #

Patch Set 7 : Windows WTF fix... #

Unified diffs Side-by-side diffs Delta from patch set Stats (+86 lines, -409 lines) Patch
M webrtc/call/bitrate_estimator_tests.cc View 1 2 3 3 chunks +2 lines, -5 lines 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe.h View 1 3 chunks +14 lines, -79 lines 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe.cc View 1 2 3 4 6 7 chunks +54 lines, -240 lines 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe_unittest.cc View 2 chunks +0 lines, -73 lines 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.cc View 1 2 3 4 5 6 7 chunks +16 lines, -12 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 28 (12 generated)
philipel
https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode47 webrtc/modules/congestion_controller/delay_based_bwe.cc:47: estimator_(new OveruseEstimator(OverUseDetectorOptions())), For |inter_arrival_| and |estimator_| I used the ...
4 years, 4 months ago (2016-08-11 11:30:06 UTC) #2
stefan-webrtc
https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode57 webrtc/modules/congestion_controller/delay_based_bwe.cc:57: LOG(LS_INFO) << "RemoteBitrateEstimatorAbsSendTime: Instantiating."; Can we get rid of ...
4 years, 4 months ago (2016-08-11 11:43:18 UTC) #3
philipel
https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode57 webrtc/modules/congestion_controller/delay_based_bwe.cc:57: LOG(LS_INFO) << "RemoteBitrateEstimatorAbsSendTime: Instantiating."; On 2016/08/11 11:43:18, stefan-webrtc (holmer) ...
4 years, 4 months ago (2016-08-11 13:30:51 UTC) #4
terelius
https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode33 webrtc/modules/congestion_controller/delay_based_bwe.cc:33: constexpr uint32_t kFixedSsrc = 0; Is this only here ...
4 years, 4 months ago (2016-08-11 13:37:17 UTC) #5
philipel
https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode33 webrtc/modules/congestion_controller/delay_based_bwe.cc:33: constexpr uint32_t kFixedSsrc = 0; On 2016/08/11 13:37:17, terelius ...
4 years, 4 months ago (2016-08-11 13:59:13 UTC) #6
terelius
lgtm, but I don't know the probing code well enough to accurately assess it.
4 years, 4 months ago (2016-08-11 14:11:36 UTC) #7
stefan-webrtc
https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode89 webrtc/modules/congestion_controller/delay_based_bwe.cc:89: if (now_ms - last_seen_packet_ms_ > kStreamTimeOutMs) { On 2016/08/11 ...
4 years, 4 months ago (2016-08-11 15:38:59 UTC) #8
philipel
https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2234363002/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode89 webrtc/modules/congestion_controller/delay_based_bwe.cc:89: if (now_ms - last_seen_packet_ms_ > kStreamTimeOutMs) { On 2016/08/11 ...
4 years, 4 months ago (2016-08-12 08:31:02 UTC) #9
stefan-webrtc
lgtm
4 years, 4 months ago (2016-08-12 14:22:32 UTC) #10
stefan-webrtc
% the nits we talked about offline...
4 years, 4 months ago (2016-08-12 14:22:46 UTC) #11
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/2234363002/80001
4 years, 4 months ago (2016-08-12 14:25:13 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: ios32_sim_dbg on master.tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/ios32_sim_dbg/builds/9506)
4 years, 4 months ago (2016-08-12 14:32:34 UTC) #16
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/2234363002/100001
4 years, 4 months ago (2016-08-15 09:15:37 UTC) #19
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/2234363002/120001
4 years, 4 months ago (2016-08-15 15:16:48 UTC) #23
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)
4 years, 4 months ago (2016-08-15 17:17:17 UTC) #25
philipel
4 years, 4 months ago (2016-08-16 08:59:55 UTC) #27
Message was sent while issue was closed.
Committed patchset #7 (id:120001) manually as
7522a2805118b561322a9ac7d37cec8e8eea06e3 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698