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

Issue 497913002: Add UMA for droppedframes count (Closed)

Created:
6 years, 4 months ago by prabhur1
Modified:
6 years, 3 months ago
CC:
chromium-reviews, feature-media-reviews_chromium.org, asvitkine+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Add UMA for droppedframes count Adding droppedframecount UMA to monitor videoplayback quality. Metric gets logged only if the pipeline has video & has decoded atleast one video frame. BUG= R=dalecurtis Committed: https://crrev.com/3c9a7d609ff3a9e3654c01fc2b686420192acede Cr-Commit-Position: refs/heads/master@{#292449}

Patch Set 1 #

Total comments: 5

Patch Set 2 : Add UMA for dropped frame count #

Total comments: 4

Patch Set 3 : Fix CR comments #

Total comments: 1

Patch Set 4 : Add a check before logging #

Total comments: 2

Patch Set 5 : Remove {} for singleline if #

Unified diffs Side-by-side diffs Delta from patch set Stats (+13 lines, -0 lines) Patch
M media/base/pipeline.cc View 1 2 3 4 1 chunk +4 lines, -0 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 chunk +9 lines, -0 lines 0 comments Download

Messages

Total messages: 32 (0 generated)
prabhur1
PTAL. Adding UMA for dropped frame count.
6 years, 4 months ago (2014-08-22 23:41:02 UTC) #1
Ilya Sherman
https://codereview.chromium.org/497913002/diff/1/tools/metrics/histograms/histograms.xml File tools/metrics/histograms/histograms.xml (right): https://codereview.chromium.org/497913002/diff/1/tools/metrics/histograms/histograms.xml#newcode10967 tools/metrics/histograms/histograms.xml:10967: + <summary>Count of dropped frames between pipeline start and ...
6 years, 4 months ago (2014-08-22 23:53:09 UTC) #2
prabhur1
Thanks! PTAL @PS2. https://codereview.chromium.org/497913002/diff/1/tools/metrics/histograms/histograms.xml File tools/metrics/histograms/histograms.xml (right): https://codereview.chromium.org/497913002/diff/1/tools/metrics/histograms/histograms.xml#newcode10967 tools/metrics/histograms/histograms.xml:10967: + <summary>Count of dropped frames between ...
6 years, 4 months ago (2014-08-23 00:23:07 UTC) #3
Ilya Sherman
https://codereview.chromium.org/497913002/diff/20001/tools/metrics/histograms/histograms.xml File tools/metrics/histograms/histograms.xml (right): https://codereview.chromium.org/497913002/diff/20001/tools/metrics/histograms/histograms.xml#newcode10969 tools/metrics/histograms/histograms.xml:10969: + starts/stops when a HTML5 video is loaded/unloaded respectively ...
6 years, 4 months ago (2014-08-23 00:37:35 UTC) #4
Ilya Sherman
LGTM % those two nits.
6 years, 4 months ago (2014-08-23 00:37:45 UTC) #5
prabhur1
prabhur@chromium.org changed reviewers: + xhwang@chromium.org
6 years, 4 months ago (2014-08-25 17:45:12 UTC) #6
prabhur1
Fixing comments. scherkus@, xhwang@ could you take a look ? https://codereview.chromium.org/497913002/diff/20001/tools/metrics/histograms/histograms.xml File tools/metrics/histograms/histograms.xml (right): https://codereview.chromium.org/497913002/diff/20001/tools/metrics/histograms/histograms.xml#newcode10969 ...
6 years, 4 months ago (2014-08-25 17:45:13 UTC) #7
scherkus (not reviewing)
https://codereview.chromium.org/497913002/diff/40001/media/base/pipeline.cc File media/base/pipeline.cc (right): https://codereview.chromium.org/497913002/diff/40001/media/base/pipeline.cc#newcode628 media/base/pipeline.cc:628: UMA_HISTOGRAM_COUNTS("Media.DroppedFrameCount", stats.video_frames_dropped); here's where things get subtle/tricky ... do ...
6 years, 3 months ago (2014-08-26 21:41:04 UTC) #8
scherkus (not reviewing)
scherkus@chromium.org changed reviewers: + dalecurtis@chromium.org
6 years, 3 months ago (2014-08-26 22:27:16 UTC) #9
scherkus (not reviewing)
dalecurtis: can you review this and help prabhur@ out? basically ... I want to make ...
6 years, 3 months ago (2014-08-26 22:27:16 UTC) #10
prabhur1
On 2014/08/26 22:27:16, scherkus wrote: > dalecurtis: can you review this and help prabhur@ out? ...
6 years, 3 months ago (2014-08-26 22:30:23 UTC) #11
DaleCurtis
I think recording when decoded_video_frames > 0 would be reasonable. A better question might be, ...
6 years, 3 months ago (2014-08-27 00:13:16 UTC) #12
scherkus (not reviewing)
On 2014/08/27 00:13:16, DaleCurtis wrote: > I think recording when decoded_video_frames > 0 would be ...
6 years, 3 months ago (2014-08-27 01:22:06 UTC) #13
DaleCurtis
On 2014/08/27 01:22:06, scherkus wrote: > On 2014/08/27 00:13:16, DaleCurtis wrote: > > I think ...
6 years, 3 months ago (2014-08-27 17:44:37 UTC) #14
scherkus (not reviewing)
On 2014/08/27 17:44:37, DaleCurtis wrote: > On 2014/08/27 01:22:06, scherkus wrote: > > On 2014/08/27 ...
6 years, 3 months ago (2014-08-27 21:26:32 UTC) #15
DaleCurtis
I'm not sure how effective this will be, but it's worth experimenting with. While redundant ...
6 years, 3 months ago (2014-08-27 22:44:37 UTC) #16
prabhur1
PTAL - Added hasVideo & decoded_frames check before logging.
6 years, 3 months ago (2014-08-28 01:28:01 UTC) #17
DaleCurtis
lgtm % nits and updating the description with some more details. Did you verify that ...
6 years, 3 months ago (2014-08-28 18:25:24 UTC) #18
prabhur1
Thanks for the review! Removed the {} & updated the CL description with more details. ...
6 years, 3 months ago (2014-08-28 18:46:30 UTC) #19
prabhur1
The CQ bit was checked by prabhur@chromium.org
6 years, 3 months ago (2014-08-28 18:46:51 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/prabhur@chromium.org/497913002/80001
6 years, 3 months ago (2014-08-28 18:48:21 UTC) #21
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-28 19:51:16 UTC) #22
commit-bot: I haz the power
Failed to commit the patch.
6 years, 3 months ago (2014-08-28 19:51:17 UTC) #23
prabhur1
The CQ bit was checked by prabhur@chromium.org
6 years, 3 months ago (2014-08-28 20:10:34 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/prabhur@chromium.org/497913002/80001
6 years, 3 months ago (2014-08-28 20:12:19 UTC) #25
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 3 months ago (2014-08-28 20:13:45 UTC) #26
commit-bot: I haz the power
Failed to commit the patch.
6 years, 3 months ago (2014-08-28 20:13:47 UTC) #27
prabhur1
The CQ bit was checked by prabhur@chromium.org
6 years, 3 months ago (2014-08-28 20:27:15 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/prabhur@chromium.org/497913002/80001
6 years, 3 months ago (2014-08-28 20:27:55 UTC) #29
commit-bot: I haz the power
Committed patchset #5 (id:80001) as ab8dbfddcc21795fd497fd638c16bf3a57041c45
6 years, 3 months ago (2014-08-28 20:29:11 UTC) #30
xhwang
On 2014/08/28 20:29:11, I haz the power (commit-bot) wrote: > Committed patchset #5 (id:80001) as ...
6 years, 3 months ago (2014-08-28 23:58:57 UTC) #31
commit-bot: I haz the power
6 years, 3 months ago (2014-09-10 03:01:47 UTC) #32
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/3c9a7d609ff3a9e3654c01fc2b686420192acede
Cr-Commit-Position: refs/heads/master@{#292449}

Powered by Google App Engine
This is Rietveld 408576698