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

Issue 1329083005: Add TransportFeedback adapter, adapting remote feedback to bwe estiamtor (Closed)

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

Description

Add TransportFeedback adapter, adapting remote feedback to bwe estiamtor When using send-side bandwidth estimation, the inter-packet delay is reported back to the sender using RTCP TransportFeedback messages. Theis data needs to be translated into a format which the bandwidth estimator (now instantiated on the send side) can use, including looking up the local absolute send time from the send time history. BUG=webrtc:4173 Committed: https://crrev.com/5e023eb337eed9746ecea7fc6fbb0fca386f1961 Cr-Commit-Position: refs/heads/master@{#9929}

Patch Set 1 #

Total comments: 18

Patch Set 2 : Addressed comments #

Total comments: 4

Patch Set 3 : Extended comment, rebase #

Patch Set 4 : Bad merge, test issue #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+607 lines, -92 lines) Patch
M webrtc/modules/modules.gyp View 1 2 1 chunk +1 line, -0 lines 0 comments Download
A + webrtc/modules/remote_bitrate_estimator/include/mock/mock_remote_bitrate_estimator.h View 2 chunks +16 lines, -4 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimator.h View 1 2 chunks +2 lines, -26 lines 0 comments Download
M webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
A webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.h View 1 1 chunk +59 lines, -0 lines 0 comments Download
A webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc View 1 1 chunk +126 lines, -0 lines 1 comment Download
A webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc View 1 2 3 1 chunk +323 lines, -0 lines 0 comments Download
M webrtc/modules/rtp_rtcp/interface/rtp_rtcp.h View 1 2 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h View 1 2 chunks +37 lines, -7 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl.cc View 1 2 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender.h View 2 chunks +2 lines, -2 lines 0 comments Download
M webrtc/modules/rtp_rtcp/source/rtp_sender.cc View 1 2 5 chunks +12 lines, -7 lines 0 comments Download
M webrtc/video_engine/vie_channel.h View 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/video_engine/vie_channel.cc View 1 2 3 10 chunks +13 lines, -15 lines 0 comments Download
M webrtc/video_engine/vie_channel_group.h View 2 chunks +1 line, -3 lines 0 comments Download
M webrtc/video_engine/vie_channel_group.cc View 1 2 6 chunks +6 lines, -21 lines 0 comments Download

Messages

Total messages: 21 (7 generated)
sprang_webrtc
Next to last cl for send-side bwe. This ones adds an adapter for the send ...
5 years, 3 months ago (2015-09-08 14:32:20 UTC) #2
stefan-webrtc
First pass, will have to take a closer look at the unittests. https://codereview.webrtc.org/1329083005/diff/1/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc File webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc ...
5 years, 3 months ago (2015-09-10 11:10:02 UTC) #3
stefan-webrtc
https://codereview.webrtc.org/1329083005/diff/1/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc File webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc (right): https://codereview.webrtc.org/1329083005/diff/1/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc#newcode86 webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc:86: truth[0].arrival_time_ms - input[0].arrival_time_ms; Just from reading this code I ...
5 years, 3 months ago (2015-09-11 08:15:12 UTC) #4
sprang_webrtc
https://codereview.webrtc.org/1329083005/diff/1/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc File webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc (right): https://codereview.webrtc.org/1329083005/diff/1/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc#newcode23 webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc:23: const int64_t kNoTimestamp = std::numeric_limits<int64_t>::min(); On 2015/09/10 11:10:01, stefan-webrtc ...
5 years, 3 months ago (2015-09-11 12:33:48 UTC) #5
stefan-webrtc
LG, but could you please further clarify the test code? https://codereview.webrtc.org/1329083005/diff/20001/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc File webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc (right): https://codereview.webrtc.org/1329083005/diff/20001/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc#newcode87 ...
5 years, 3 months ago (2015-09-14 08:48:51 UTC) #6
sprang_webrtc
https://codereview.webrtc.org/1329083005/diff/20001/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc File webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc (right): https://codereview.webrtc.org/1329083005/diff/20001/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc#newcode87 webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc:87: // difference when comparing. On 2015/09/14 08:48:50, stefan-webrtc (holmer) ...
5 years, 3 months ago (2015-09-14 09:03:01 UTC) #7
stefan-webrtc
lgtm https://codereview.webrtc.org/1329083005/diff/20001/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc File webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc (right): https://codereview.webrtc.org/1329083005/diff/20001/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc#newcode87 webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc:87: // difference when comparing. On 2015/09/14 09:03:01, språng ...
5 years, 3 months ago (2015-09-14 09:18:54 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1329083005/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1329083005/40001
5 years, 3 months ago (2015-09-14 11:08:02 UTC) #11
commit-bot: I haz the power
Try jobs failed on following builders: android_clang on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/android_clang/builds/7535)
5 years, 3 months ago (2015-09-14 11:11:25 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1329083005/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1329083005/60001
5 years, 3 months ago (2015-09-14 12:28:48 UTC) #16
sprang_webrtc
https://codereview.webrtc.org/1329083005/diff/20001/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc File webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc (right): https://codereview.webrtc.org/1329083005/diff/20001/webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc#newcode87 webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter_unittest.cc:87: // difference when comparing. On 2015/09/14 09:18:54, stefan-webrtc (holmer) ...
5 years, 3 months ago (2015-09-14 13:26:03 UTC) #17
commit-bot: I haz the power
Committed patchset #4 (id:60001)
5 years, 3 months ago (2015-09-14 13:42:48 UTC) #18
commit-bot: I haz the power
Patchset 4 (id:??) landed as https://crrev.com/5e023eb337eed9746ecea7fc6fbb0fca386f1961 Cr-Commit-Position: refs/heads/master@{#9929}
5 years, 3 months ago (2015-09-14 13:42:57 UTC) #19
kjellander_webrtc
4 years, 2 months ago (2016-09-29 05:15:51 UTC) #21
Message was sent while issue was closed.
Added comment regarding log spam

https://codereview.webrtc.org/1329083005/diff/60001/webrtc/modules/remote_bit...
File webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc
(right):

https://codereview.webrtc.org/1329083005/diff/60001/webrtc/modules/remote_bit...
webrtc/modules/remote_bitrate_estimator/transport_feedback_adapter.cc:105:
LOG(LS_WARNING) << "Failed to lookup send time for " << failed_lookups
This warning can spam the logs a lot during a call. Can you implement some of
kind of throttling for it?

Powered by Google App Engine
This is Rietveld 408576698