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

Issue 1311533012: Add histogram for percentage of sent frames that are limited in resolution due to bandwidth. (Closed)

Created:
5 years, 3 months ago by åsapersson
Modified:
5 years, 2 months ago
CC:
webrtc-reviews_webrtc.org, interface-changes_webrtc.org, rwolff_gocast.it, yujie_mao (webrtc), Andrew MacDonald, stefan-webrtc, tterriberry_mozilla.com, qiang.lu, niklas.enbom, 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 histogram for percentage of sent frames that are limited in resolution due to bandwidth: - "WebRTC.Video.BandwidthLimitedResolutionInPercent" If the frame is bandwidth limited, the average number of disabled resolutions is logged: - "WebRTC.Video.BandwidthLimitedResolutionsDisabled" BUG= Committed: https://crrev.com/da535c405597864b8396b2029dec70ab9fb76e8b Cr-Commit-Position: refs/heads/master@{#10333}

Patch Set 1 : #

Total comments: 8

Patch Set 2 : addressed comments #

Patch Set 3 : #

Total comments: 4

Patch Set 4 : address comment #

Patch Set 5 : rebase #

Patch Set 6 : only report for lowest stream #

Patch Set 7 : spacing #

Patch Set 8 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+48 lines, -4 lines) Patch
M webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc View 1 2 3 4 5 6 7 3 chunks +15 lines, -0 lines 0 comments Download
M webrtc/video/send_statistics_proxy.h View 1 2 3 4 5 6 7 3 chunks +8 lines, -2 lines 0 comments Download
M webrtc/video/send_statistics_proxy.cc View 1 2 3 4 5 6 7 3 chunks +19 lines, -1 line 0 comments Download
M webrtc/video_frame.h View 1 2 3 4 5 6 7 2 chunks +6 lines, -1 line 0 comments Download

Messages

Total messages: 27 (11 generated)
åsapersson
5 years, 3 months ago (2015-09-11 08:49:20 UTC) #7
pbos-webrtc
https://codereview.webrtc.org/1311533012/diff/100001/webrtc/video/send_statistics_proxy.cc File webrtc/video/send_statistics_proxy.cc (right): https://codereview.webrtc.org/1311533012/diff/100001/webrtc/video/send_statistics_proxy.cc#newcode68 webrtc/video/send_statistics_proxy.cc:68: RTC_HISTOGRAM_PERCENTAGE("WebRTC.Video.BandwidthLimitedResolutionInPercent", Can we report this per SSRC/simulcast layer? I ...
5 years, 3 months ago (2015-09-11 11:28:24 UTC) #8
stefan-webrtc
https://codereview.webrtc.org/1311533012/diff/100001/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc File webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc (right): https://codereview.webrtc.org/1311533012/diff/100001/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc#newcode140 webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc:140: return true; I think you could replace this with ...
5 years, 3 months ago (2015-09-16 07:49:27 UTC) #9
åsapersson
https://codereview.webrtc.org/1311533012/diff/100001/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc File webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc (right): https://codereview.webrtc.org/1311533012/diff/100001/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc#newcode958 webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc:958: bw_limited_resolution = !SendingAllStreams(send_stream_); On 2015/09/16 07:49:27, stefan-webrtc (holmer) wrote: ...
5 years, 3 months ago (2015-09-17 14:12:03 UTC) #10
stefan-webrtc
https://codereview.webrtc.org/1311533012/diff/140001/webrtc/video/send_statistics_proxy.cc File webrtc/video/send_statistics_proxy.cc (right): https://codereview.webrtc.org/1311533012/diff/140001/webrtc/video/send_statistics_proxy.cc#newcode71 webrtc/video/send_statistics_proxy.cc:71: int num_disabled = bw_resolutions_disabled_counter_.Avg(kMinRequiredSamples); Same as in the other ...
5 years, 3 months ago (2015-09-23 15:10:35 UTC) #12
åsapersson
https://codereview.webrtc.org/1311533012/diff/140001/webrtc/video/send_statistics_proxy.cc File webrtc/video/send_statistics_proxy.cc (right): https://codereview.webrtc.org/1311533012/diff/140001/webrtc/video/send_statistics_proxy.cc#newcode71 webrtc/video/send_statistics_proxy.cc:71: int num_disabled = bw_resolutions_disabled_counter_.Avg(kMinRequiredSamples); On 2015/09/23 15:10:34, stefan-webrtc (holmer) ...
5 years, 3 months ago (2015-09-24 08:23:45 UTC) #13
stefan-webrtc
lgtm
5 years, 2 months ago (2015-09-28 13:45:11 UTC) #14
pbos-webrtc
lgtm, please file a bug to implement this in SimulcastEncoderAdapter so we can get stats ...
5 years, 2 months ago (2015-09-28 15:34:38 UTC) #15
åsapersson
https://codereview.webrtc.org/1311533012/diff/140001/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc File webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc (right): https://codereview.webrtc.org/1311533012/diff/140001/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc#newcode958 webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc:958: if (bw_available) On 2015/09/28 15:34:38, pbos-webrtc wrote: > int ...
5 years, 2 months ago (2015-09-28 15:47:39 UTC) #16
åsapersson
Magnus, can you take a look at webrtc/video_frame.h?
5 years, 2 months ago (2015-10-16 11:08:45 UTC) #17
mflodman
video_frame.h LGTM
5 years, 2 months ago (2015-10-16 11:55:54 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1311533012/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1311533012/240001
5 years, 2 months ago (2015-10-19 11:00:24 UTC) #21
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_rel on tryserver.webrtc (JOB_TIMED_OUT, no build URL) android_dbg on ...
5 years, 2 months ago (2015-10-19 13:00:41 UTC) #23
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1311533012/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1311533012/240001
5 years, 2 months ago (2015-10-20 06:31:37 UTC) #25
commit-bot: I haz the power
Committed patchset #8 (id:240001)
5 years, 2 months ago (2015-10-20 06:32:45 UTC) #26
commit-bot: I haz the power
5 years, 2 months ago (2015-10-20 06:32:58 UTC) #27
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/da535c405597864b8396b2029dec70ab9fb76e8b
Cr-Commit-Position: refs/heads/master@{#10333}

Powered by Google App Engine
This is Rietveld 408576698