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

Issue 1290813008: Add RemoteEstimatorProxy for capturing receive times (Closed)

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

Description

Add RemoteEstimatorProxy for capturing receive times For use when send-side bandwidth estimation is enabled. Receive times need to be captured, buffered and then sent using TransportFeedback RTCP messaged back to the send side. BUG=webrtc:4173 Committed: https://crrev.com/233bd87d45bbeeec50d7687e7d98c1cfc7f65562 Cr-Commit-Position: refs/heads/master@{#9898}

Patch Set 1 #

Total comments: 32

Patch Set 2 : Addressed comments #

Patch Set 3 : Addressed comments #

Total comments: 2

Patch Set 4 : Typo in comment #

Patch Set 5 : Rebase #

Patch Set 6 : Fixed borked Rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+580 lines, -0 lines) Patch
M webrtc/modules/modules.gyp View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/pacing/include/packet_router.h View 2 chunks +4 lines, -0 lines 0 comments Download
M webrtc/modules/pacing/packet_router.cc View 2 chunks +11 lines, -0 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi View 1 chunk +2 lines, -0 lines 0 comments Download
A webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.h View 1 2 3 4 5 1 chunk +76 lines, -0 lines 0 comments Download
A webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc View 1 2 3 4 5 1 chunk +162 lines, -0 lines 0 comments Download
A webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc View 2 3 4 1 chunk +272 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/interface/rtp_rtcp.h View 2 chunks +5 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h View 2 chunks +2 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.cc View 1 2 3 4 1 chunk +7 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_sender.h View 2 chunks +4 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtcp_sender.cc View 1 2 3 4 2 chunks +26 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.h View 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc View 1 chunk +5 lines, -0 lines 0 comments Download

Messages

Total messages: 25 (9 generated)
sprang_webrtc
5 years, 4 months ago (2015-08-18 09:36:51 UTC) #2
sprang_webrtc
Reassigning to stefan@
5 years, 3 months ago (2015-08-31 13:20:11 UTC) #4
stefan-webrtc
https://codereview.webrtc.org/1290813008/diff/1/webrtc/modules/interface/module_common_types.h File webrtc/modules/interface/module_common_types.h (right): https://codereview.webrtc.org/1290813008/diff/1/webrtc/modules/interface/module_common_types.h#newcode770 webrtc/modules/interface/module_common_types.h:770: class SequenceNumberUnwrapper { We have similar tools for timestamps ...
5 years, 3 months ago (2015-09-04 07:31:36 UTC) #5
sprang_webrtc
https://codereview.webrtc.org/1290813008/diff/1/webrtc/modules/interface/module_common_types.h File webrtc/modules/interface/module_common_types.h (right): https://codereview.webrtc.org/1290813008/diff/1/webrtc/modules/interface/module_common_types.h#newcode770 webrtc/modules/interface/module_common_types.h:770: class SequenceNumberUnwrapper { On 2015/09/04 07:31:35, stefan-webrtc (holmer) wrote: ...
5 years, 3 months ago (2015-09-04 13:29:44 UTC) #6
stefan-webrtc
https://codereview.webrtc.org/1290813008/diff/1/webrtc/modules/pacing/include/packet_router.h File webrtc/modules/pacing/include/packet_router.h (right): https://codereview.webrtc.org/1290813008/diff/1/webrtc/modules/pacing/include/packet_router.h#newcode50 webrtc/modules/pacing/include/packet_router.h:50: virtual bool SendFeedback(rtcp::TransportFeedback* packet); On 2015/09/04 13:29:44, språng wrote: ...
5 years, 3 months ago (2015-09-07 10:12:21 UTC) #7
sprang_webrtc
https://codereview.webrtc.org/1290813008/diff/1/webrtc/modules/pacing/include/packet_router.h File webrtc/modules/pacing/include/packet_router.h (right): https://codereview.webrtc.org/1290813008/diff/1/webrtc/modules/pacing/include/packet_router.h#newcode50 webrtc/modules/pacing/include/packet_router.h:50: virtual bool SendFeedback(rtcp::TransportFeedback* packet); On 2015/09/07 10:12:21, stefan-webrtc (holmer) ...
5 years, 3 months ago (2015-09-07 11:14:35 UTC) #8
stefan-webrtc
lgtm https://codereview.webrtc.org/1290813008/diff/40001/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc File webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc (right): https://codereview.webrtc.org/1290813008/diff/40001/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc#newcode142 webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc:142: // If we can't even add the first ...
5 years, 3 months ago (2015-09-07 11:18:53 UTC) #9
stefan-webrtc
Remember to update the description.
5 years, 3 months ago (2015-09-07 11:19:07 UTC) #10
sprang_webrtc
https://codereview.webrtc.org/1290813008/diff/40001/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc File webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc (right): https://codereview.webrtc.org/1290813008/diff/40001/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc#newcode142 webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc:142: // If we can't even add the first seq ...
5 years, 3 months ago (2015-09-08 12:11:05 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1290813008/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1290813008/80001
5 years, 3 months ago (2015-09-08 12:11:12 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: win_x64_rel on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/win_x64_rel/builds/9253)
5 years, 3 months ago (2015-09-08 12:21:22 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1290813008/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1290813008/100001
5 years, 3 months ago (2015-09-08 13:06:37 UTC) #19
commit-bot: I haz the power
Try jobs failed on following builders: linux_msan on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/linux_msan/builds/4582)
5 years, 3 months ago (2015-09-08 13:38:24 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1290813008/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1290813008/100001
5 years, 3 months ago (2015-09-08 19:41:05 UTC) #23
commit-bot: I haz the power
Committed patchset #6 (id:100001)
5 years, 3 months ago (2015-09-08 20:25:20 UTC) #24
commit-bot: I haz the power
5 years, 3 months ago (2015-09-08 20:25:33 UTC) #25
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/233bd87d45bbeeec50d7687e7d98c1cfc7f65562
Cr-Commit-Position: refs/heads/master@{#9898}

Powered by Google App Engine
This is Rietveld 408576698