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

Issue 2005313003: Propagate probing cluster id to SendTimeHistory. (Closed)

Created:
4 years, 7 months ago by philipel
Modified:
4 years, 6 months ago
CC:
webrtc-reviews_webrtc.org, danilchap, zhuangzesen_agora.io, Andrew MacDonald, henrika_webrtc, stefan-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc, minyue-webrtc, the sun, mflodman
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Propagate probing cluster id to SendTimeHistory, both for packets and padding. BUG=webrtc:5859 Committed: https://crrev.com/5be28c848b91bc6e4800eac07a3f5ac09a32ad70 Cr-Commit-Position: refs/heads/master@{#12985}

Patch Set 1 #

Total comments: 6

Patch Set 2 : Feedback fixes. #

Total comments: 12

Patch Set 3 : Only save probe cluster id in send time history. #

Total comments: 23

Patch Set 4 : Feedback fixes. #

Total comments: 10

Patch Set 5 : Test probe_cluster_id in PacketRouterTest. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+279 lines, -192 lines) Patch
M webrtc/modules/pacing/paced_sender.h View 2 2 chunks +3 lines, -2 lines 0 comments Download
M webrtc/modules/pacing/paced_sender.cc View 1 2 3 4 chunks +7 lines, -5 lines 0 comments Download
M webrtc/modules/pacing/paced_sender_unittest.cc View 1 2 13 chunks +19 lines, -19 lines 0 comments Download
M webrtc/modules/pacing/packet_router.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/pacing/packet_router.cc View 1 chunk +6 lines, -4 lines 0 comments Download
M webrtc/modules/pacing/packet_router_unittest.cc View 1 2 3 4 5 chunks +35 lines, -30 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/include/send_time_history.h View 1 2 1 chunk +4 lines, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/send_time_history.cc View 1 2 1 chunk +5 lines, -3 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/send_time_history_unittest.cc View 1 2 3 8 chunks +62 lines, -39 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc View 1 2 3 1 chunk +5 lines, -3 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/packet_sender.h View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/packet_sender.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.h View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc View 1 2 3 6 chunks +23 lines, -19 lines 0 comments Download
M webrtc/modules/rtp_rtcp/include/rtp_rtcp.h View 1 chunk +3 lines, -2 lines 0 comments Download
M webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h View 1 2 3 chunks +21 lines, -6 lines 0 comments Download
M webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h View 1 chunk +7 lines, -5 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h View 1 chunk +3 lines, -2 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc View 1 2 1 chunk +7 lines, -5 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender.h View 1 2 3 chunks +10 lines, -6 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender.cc View 1 2 10 chunks +23 lines, -18 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc View 1 13 chunks +23 lines, -15 lines 0 comments Download
M webrtc/voice_engine/channel.cc View 1 2 1 chunk +4 lines, -2 lines 0 comments Download

Messages

Total messages: 34 (11 generated)
philipel
4 years, 7 months ago (2016-05-25 11:25:39 UTC) #2
danilchap
https://codereview.webrtc.org/2005313003/diff/1/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc File webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc (right): https://codereview.webrtc.org/2005313003/diff/1/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc#newcode214 webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc:214: packet_info.probe_cluster_id); IncomingPacketInfo here still takes (bool was_paced) as last ...
4 years, 7 months ago (2016-05-25 13:00:54 UTC) #3
philipel
New strategy: completely annihilate was_paced. https://codereview.webrtc.org/2005313003/diff/1/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc File webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc (right): https://codereview.webrtc.org/2005313003/diff/1/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc#newcode214 webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc:214: packet_info.probe_cluster_id); On 2016/05/25 13:00:54, ...
4 years, 7 months ago (2016-05-26 09:59:12 UTC) #4
danilchap
This CL starting to look big. May be split it into several steps, e.g.: 1) ...
4 years, 7 months ago (2016-05-26 11:22:42 UTC) #5
stefan-webrtc
Since the RemoteBitrateEstimator is used both on the send-side and the receive-side depending on configuration, ...
4 years, 7 months ago (2016-05-26 16:29:50 UTC) #6
danilchap
https://codereview.webrtc.org/2005313003/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_sender.cc File webrtc/modules/rtp_rtcp/source/rtp_sender.cc (right): https://codereview.webrtc.org/2005313003/diff/20001/webrtc/modules/rtp_rtcp/source/rtp_sender.cc#newcode1011 webrtc/modules/rtp_rtcp/source/rtp_sender.cc:1011: bytes_sent += SendPadData(bytes - bytes_sent, false, 0, 0); Padding ...
4 years, 6 months ago (2016-05-31 08:58:24 UTC) #7
philipel
Right, the current strategy for this CL is to only save the probe_cluster_id in the ...
4 years, 6 months ago (2016-05-31 11:58:10 UTC) #9
danilchap
functional change looks good, but simple propagation tests looks missing. https://codereview.webrtc.org/2005313003/diff/40001/webrtc/modules/pacing/paced_sender.cc File webrtc/modules/pacing/paced_sender.cc (right): https://codereview.webrtc.org/2005313003/diff/40001/webrtc/modules/pacing/paced_sender.cc#newcode428 ...
4 years, 6 months ago (2016-05-31 13:06:50 UTC) #10
philipel
https://codereview.webrtc.org/2005313003/diff/40001/webrtc/modules/pacing/paced_sender.cc File webrtc/modules/pacing/paced_sender.cc (right): https://codereview.webrtc.org/2005313003/diff/40001/webrtc/modules/pacing/paced_sender.cc#newcode428 webrtc/modules/pacing/paced_sender.cc:428: SendPadding(static_cast<size_t>(padding_needed), probe_cluster_id); On 2016/05/31 13:06:49, danilchap wrote: > since ...
4 years, 6 months ago (2016-05-31 14:34:59 UTC) #11
danilchap
https://codereview.webrtc.org/2005313003/diff/60001/webrtc/modules/pacing/packet_router_unittest.cc File webrtc/modules/pacing/packet_router_unittest.cc (right): https://codereview.webrtc.org/2005313003/diff/60001/webrtc/modules/pacing/packet_router_unittest.cc#newcode51 webrtc/modules/pacing/packet_router_unittest.cc:51: retransmission, PacketInfo::kNotAProbe)) integrate testing of cluster_id propagation through packet ...
4 years, 6 months ago (2016-05-31 15:32:15 UTC) #12
stefan-webrtc
lgtm https://codereview.webrtc.org/2005313003/diff/60001/webrtc/modules/pacing/paced_sender_unittest.cc File webrtc/modules/pacing/paced_sender_unittest.cc (right): https://codereview.webrtc.org/2005313003/diff/60001/webrtc/modules/pacing/paced_sender_unittest.cc#newcode873 webrtc/modules/pacing/paced_sender_unittest.cc:873: TEST_F(PacedSenderTest, DISABLED_ProbeClusterId) { This shouldn't have to be ...
4 years, 6 months ago (2016-05-31 15:39:53 UTC) #13
philipel
https://codereview.webrtc.org/2005313003/diff/60001/webrtc/modules/pacing/paced_sender_unittest.cc File webrtc/modules/pacing/paced_sender_unittest.cc (right): https://codereview.webrtc.org/2005313003/diff/60001/webrtc/modules/pacing/paced_sender_unittest.cc#newcode873 webrtc/modules/pacing/paced_sender_unittest.cc:873: TEST_F(PacedSenderTest, DISABLED_ProbeClusterId) { On 2016/05/31 15:39:53, stefan-webrtc (holmer) wrote: ...
4 years, 6 months ago (2016-05-31 15:48:30 UTC) #14
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2005313003/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2005313003/80001
4 years, 6 months ago (2016-05-31 16:18:41 UTC) #16
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_dbg on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_dbg/builds/13766)
4 years, 6 months ago (2016-05-31 17:35:09 UTC) #18
danilchap
lgtm
4 years, 6 months ago (2016-06-01 08:41:19 UTC) #19
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2005313003/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2005313003/80001
4 years, 6 months ago (2016-06-01 08:46:36 UTC) #22
commit-bot: I haz the power
Try jobs failed on following builders: presubmit on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/presubmit/builds/5991)
4 years, 6 months ago (2016-06-01 08:49:27 UTC) #24
philipel
Magnus, need owner approval for webrtc/voice_engine/channel.cc, PTAL.
4 years, 6 months ago (2016-06-01 09:11:06 UTC) #26
mflodman
channel.cc LGTM
4 years, 6 months ago (2016-06-01 09:12:49 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2005313003/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2005313003/80001
4 years, 6 months ago (2016-06-01 09:47:45 UTC) #29
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 6 months ago (2016-06-01 09:49:30 UTC) #31
commit-bot: I haz the power
Patchset 5 (id:??) landed as https://crrev.com/5be28c848b91bc6e4800eac07a3f5ac09a32ad70 Cr-Commit-Position: refs/heads/master@{#12985}
4 years, 6 months ago (2016-06-01 09:49:36 UTC) #33
philipel
4 years, 6 months ago (2016-06-01 11:04:28 UTC) #34
Message was sent while issue was closed.
A revert of this CL (patchset #5 id:80001) has been created in
https://codereview.webrtc.org/2032463003/ by philipel@webrtc.org.

The reason for reverting is: Breaks google3 buildbot: 
http://webrtc-buildbot-master.mtv.corp.google.com:21000/builders/WebRTC%20goo....

Powered by Google App Engine
This is Rietveld 408576698