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

Issue 2695923004: Add logging of delay-based bandwidth estimate. (Closed)

Created:
3 years, 10 months ago by terelius
Modified:
3 years, 10 months ago
CC:
webrtc-reviews_webrtc.org, 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
Target Ref:
refs/heads/master
Project:
webrtc
Visibility:
Public.

Description

Add logging of delay-based bandwidth estimate. BUG=webrtc:6423 Review-Url: https://codereview.webrtc.org/2695923004 Cr-Commit-Position: refs/heads/master@{#16663} Committed: https://chromium.googlesource.com/external/webrtc/+/0baf55d23b6986c210006393e0fb1f8564204291

Patch Set 1 #

Total comments: 7

Patch Set 2 : Make pointers const. #

Total comments: 8

Patch Set 3 : Add dependency on the rtc_event_log_api target. #

Patch Set 4 : Only log BWE update if bitrate or state has changed. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+305 lines, -22 lines) Patch
M webrtc/logging/rtc_event_log/DEPS View 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h View 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/logging/rtc_event_log/rtc_event_log.h View 3 chunks +8 lines, -1 line 0 comments Download
M webrtc/logging/rtc_event_log/rtc_event_log.cc View 3 chunks +27 lines, -0 lines 0 comments Download
M webrtc/logging/rtc_event_log/rtc_event_log.proto View 3 chunks +18 lines, -1 line 0 comments Download
M webrtc/logging/rtc_event_log/rtc_event_log_parser.h View 3 chunks +16 lines, -7 lines 0 comments Download
M webrtc/logging/rtc_event_log/rtc_event_log_parser.cc View 2 chunks +35 lines, -0 lines 0 comments Download
M webrtc/logging/rtc_event_log/rtc_event_log_unittest.cc View 1 chunk +88 lines, -0 lines 0 comments Download
M webrtc/logging/rtc_event_log/rtc_event_log_unittest_helper.h View 1 chunk +4 lines, -0 lines 0 comments Download
M webrtc/logging/rtc_event_log/rtc_event_log_unittest_helper.cc View 4 chunks +58 lines, -0 lines 0 comments Download
M webrtc/modules/congestion_controller/BUILD.gn View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/congestion_controller/congestion_controller.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe.h View 1 2 3 4 chunks +6 lines, -1 line 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe.cc View 1 2 3 4 chunks +13 lines, -2 lines 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe_unittest.cc View 3 chunks +3 lines, -3 lines 0 comments Download
M webrtc/modules/congestion_controller/delay_based_bwe_unittest_helper.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/modules/congestion_controller/transport_feedback_adapter.h View 1 2 chunks +5 lines, -1 line 0 comments Download
M webrtc/modules/congestion_controller/transport_feedback_adapter.cc View 4 chunks +4 lines, -1 line 0 comments Download
M webrtc/modules/congestion_controller/transport_feedback_adapter_unittest.cc View 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/tools/event_log_visualizer/analyzer.cc View 1 chunk +1 line, -1 line 0 comments Download
M webrtc/voice_engine/channel.cc View 1 chunk +8 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 26 (16 generated)
terelius
3 years, 10 months ago (2017-02-14 18:07:03 UTC) #4
stefan-webrtc
https://codereview.webrtc.org/2695923004/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2695923004/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode394 webrtc/modules/congestion_controller/delay_based_bwe.cc:394: if (event_log_) { Should we pass a null object ...
3 years, 10 months ago (2017-02-14 18:13:21 UTC) #7
terelius
+solenberg for voice_engine/ https://codereview.webrtc.org/2695923004/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2695923004/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode394 webrtc/modules/congestion_controller/delay_based_bwe.cc:394: if (event_log_) { On 2017/02/14 18:13:20, ...
3 years, 10 months ago (2017-02-15 12:49:24 UTC) #9
stefan-webrtc
lgtm https://codereview.webrtc.org/2695923004/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc File webrtc/modules/congestion_controller/delay_based_bwe.cc (right): https://codereview.webrtc.org/2695923004/diff/1/webrtc/modules/congestion_controller/delay_based_bwe.cc#newcode394 webrtc/modules/congestion_controller/delay_based_bwe.cc:394: if (event_log_) { On 2017/02/15 12:49:24, terelius wrote: ...
3 years, 10 months ago (2017-02-16 10:22:28 UTC) #10
philipel
https://codereview.webrtc.org/2695923004/diff/20001/webrtc/logging/rtc_event_log/rtc_event_log.h File webrtc/logging/rtc_event_log/rtc_event_log.h (right): https://codereview.webrtc.org/2695923004/diff/20001/webrtc/logging/rtc_event_log/rtc_event_log.h#newcode120 webrtc/logging/rtc_event_log/rtc_event_log.h:120: virtual void LogBwePacketDelayEvent(int32_t bitrate, Don't you think LogDelayBasedBweUpdateEvent might ...
3 years, 10 months ago (2017-02-16 10:37:56 UTC) #11
the sun
lgtm for voice_engine/
3 years, 10 months ago (2017-02-16 13:11:17 UTC) #12
terelius
https://codereview.webrtc.org/2695923004/diff/20001/webrtc/logging/rtc_event_log/rtc_event_log.h File webrtc/logging/rtc_event_log/rtc_event_log.h (right): https://codereview.webrtc.org/2695923004/diff/20001/webrtc/logging/rtc_event_log/rtc_event_log.h#newcode120 webrtc/logging/rtc_event_log/rtc_event_log.h:120: virtual void LogBwePacketDelayEvent(int32_t bitrate, On 2017/02/16 10:37:56, philipel wrote: ...
3 years, 10 months ago (2017-02-16 23:15:10 UTC) #15
philipel
lgtm https://codereview.webrtc.org/2695923004/diff/20001/webrtc/logging/rtc_event_log/rtc_event_log.h File webrtc/logging/rtc_event_log/rtc_event_log.h (right): https://codereview.webrtc.org/2695923004/diff/20001/webrtc/logging/rtc_event_log/rtc_event_log.h#newcode120 webrtc/logging/rtc_event_log/rtc_event_log.h:120: virtual void LogBwePacketDelayEvent(int32_t bitrate, On 2017/02/16 23:15:10, terelius ...
3 years, 10 months ago (2017-02-17 10:29:08 UTC) #20
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/2695923004/60001
3 years, 10 months ago (2017-02-17 11:35:54 UTC) #23
commit-bot: I haz the power
3 years, 10 months ago (2017-02-17 11:38:36 UTC) #26
Message was sent while issue was closed.
Committed patchset #4 (id:60001) as
https://chromium.googlesource.com/external/webrtc/+/0baf55d23b6986c210006393e...

Powered by Google App Engine
This is Rietveld 408576698