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

Issue 1967503002: Audio codec usage statistics (Closed)

Created:
4 years, 7 months ago by aleloi
Modified:
4 years, 7 months ago
CC:
webrtc-reviews_webrtc.org, kwiberg-webrtc, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc, minyue-webrtc
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Added UMA logging for audio codec usage. A histogram statistic named "WebRTC.Audio.Encoder.CodecType" has been created. Committed: https://crrev.com/8bce67b7451d2d75390410dd7bbc82078ccfb2c9 Cr-Commit-Position: refs/heads/master@{#12760}

Patch Set 1 #

Total comments: 38

Patch Set 2 : CL attempt 2. Added/responded to most comments #

Total comments: 13

Patch Set 3 : Moved logging to AudioCodingModuleImpl #

Total comments: 50

Patch Set 4 : Minor changes to comply with style guide #

Patch Set 5 : Small fixes, formatting, responding to comments #

Patch Set 6 : Removed strings and added enum classes #

Total comments: 10

Patch Set 7 : Minor fixes + counting bugfix #

Total comments: 21

Patch Set 8 : Minor fixes #

Total comments: 9

Patch Set 9 : Very small changes from ossu's and hlundin's comments. #

Total comments: 4

Patch Set 10 : Hopefully last version, minimal changes. #

Total comments: 10

Patch Set 11 : Removed unnecessary scoping operators #

Patch Set 12 : Removed unneeded 'virtual' #

Patch Set 13 : int conversion #

Patch Set 14 : explicit casts #

Unified diffs Side-by-side diffs Delta from patch set Stats (+81 lines, -1 line) Patch
M webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h View 1 2 3 4 5 6 7 8 9 2 chunks +5 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 3 chunks +29 lines, -1 line 0 comments Download
M webrtc/modules/audio_coding/codecs/audio_encoder.h View 1 2 3 4 5 6 7 8 9 1 chunk +20 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h View 1 2 3 4 5 6 7 8 9 10 3 chunks +8 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc View 1 2 3 4 5 6 7 8 9 3 chunks +9 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.cc View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/ilbc/audio_encoder_ilbc.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/opus/audio_encoder_opus.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/codecs/pcm16b/audio_encoder_pcm16b.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 77 (23 generated)
aleloi
Hi! This is a CL of my first Noogler project. Please take a look!
4 years, 7 months ago (2016-05-10 13:24:04 UTC) #3
kwiberg-webrtc
Looks good, but a few comments: https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode36 webrtc/modules/audio_coding/codecs/audio_encoder.cc:36: const float kProbabilityToLogCodecType ...
4 years, 7 months ago (2016-05-11 00:47:00 UTC) #5
the sun
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode85 webrtc/modules/audio_coding/codecs/audio_encoder.cc:85: if (rand() / RAND_MAX < kProbabilityToLogCodecType) On 2016/05/11 00:47:00, ...
4 years, 7 months ago (2016-05-11 08:18:43 UTC) #6
hlundin-webrtc
Nice first CL! See comments inline. https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode23 webrtc/modules/audio_coding/codecs/audio_encoder.cc:23: enum HistogramAudioCodecType { ...
4 years, 7 months ago (2016-05-11 08:27:26 UTC) #7
kwiberg-webrtc
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode85 webrtc/modules/audio_coding/codecs/audio_encoder.cc:85: if (rand() / RAND_MAX < kProbabilityToLogCodecType) On 2016/05/11 08:18:43, ...
4 years, 7 months ago (2016-05-11 08:52:25 UTC) #8
hlundin-webrtc
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode139 webrtc/modules/audio_coding/codecs/audio_encoder.h:139: // Subclasses implements this and return a name, e.g. ...
4 years, 7 months ago (2016-05-11 08:59:18 UTC) #9
kwiberg-webrtc
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode139 webrtc/modules/audio_coding/codecs/audio_encoder.h:139: // Subclasses implements this and return a name, e.g. ...
4 years, 7 months ago (2016-05-11 09:49:43 UTC) #10
the sun
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode85 webrtc/modules/audio_coding/codecs/audio_encoder.cc:85: if (rand() / RAND_MAX < kProbabilityToLogCodecType) On 2016/05/11 08:52:24, ...
4 years, 7 months ago (2016-05-11 10:35:02 UTC) #11
hlundin-webrtc
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode85 webrtc/modules/audio_coding/codecs/audio_encoder.cc:85: if (rand() / RAND_MAX < kProbabilityToLogCodecType) On 2016/05/11 10:35:01, ...
4 years, 7 months ago (2016-05-11 10:37:20 UTC) #12
kwiberg-webrtc
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode85 webrtc/modules/audio_coding/codecs/audio_encoder.cc:85: if (rand() / RAND_MAX < kProbabilityToLogCodecType) On 2016/05/11 10:37:20, ...
4 years, 7 months ago (2016-05-11 10:46:21 UTC) #13
hlundin-webrtc
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode85 webrtc/modules/audio_coding/codecs/audio_encoder.cc:85: if (rand() / RAND_MAX < kProbabilityToLogCodecType) On 2016/05/11 10:46:21, ...
4 years, 7 months ago (2016-05-11 11:01:37 UTC) #14
aleloi
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode36 webrtc/modules/audio_coding/codecs/audio_encoder.cc:36: const float kProbabilityToLogCodecType = 1.0 / 500.0; On 2016/05/11 ...
4 years, 7 months ago (2016-05-11 11:16:13 UTC) #15
The Sun (google.com)
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode139 webrtc/modules/audio_coding/codecs/audio_encoder.h:139: // Subclasses implements this and return a name, e.g. ...
4 years, 7 months ago (2016-05-11 11:36:44 UTC) #17
kwiberg-webrtc
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode53 webrtc/modules/audio_coding/codecs/audio_encoder.cc:53: } On 2016/05/11 11:16:13, aleloi wrote: > On 2016/05/11 ...
4 years, 7 months ago (2016-05-11 12:00:42 UTC) #18
hlundin-webrtc
https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/1/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode41 webrtc/modules/audio_coding/codecs/audio_encoder.cc:41: if (strcmp("Opus", codec_name) == 0) On 2016/05/11 11:16:13, aleloi ...
4 years, 7 months ago (2016-05-11 13:03:56 UTC) #19
aleloi
RE static_asserts for histogram boundary https://codereview.webrtc.org/1967503002/diff/20001/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/20001/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode23 webrtc/modules/audio_coding/codecs/audio_encoder.cc:23: constexpr int kAudioMax = ...
4 years, 7 months ago (2016-05-11 14:05:56 UTC) #20
aleloi
responses to hlundin@'s comments. https://codereview.webrtc.org/1967503002/diff/20001/webrtc/modules/audio_coding/codecs/audio_encoder.cc File webrtc/modules/audio_coding/codecs/audio_encoder.cc (right): https://codereview.webrtc.org/1967503002/diff/20001/webrtc/modules/audio_coding/codecs/audio_encoder.cc#newcode35 webrtc/modules/audio_coding/codecs/audio_encoder.cc:35: for (const auto & codec ...
4 years, 7 months ago (2016-05-11 14:10:50 UTC) #21
hlundin-webrtc
A few minor comments. https://codereview.webrtc.org/1967503002/diff/20001/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc File webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc (right): https://codereview.webrtc.org/1967503002/diff/20001/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc#newcode120 webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.cc:120: return "g711"; On 2016/05/11 14:10:49, ...
4 years, 7 months ago (2016-05-12 12:23:40 UTC) #23
aleloi
Made a new CL according to Karl's and Oskar's suggestions. The logging is moved from ...
4 years, 7 months ago (2016-05-12 12:37:46 UTC) #24
ossu
I found your CL! Also made a few comments. :) https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc File webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc (right): https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc#newcode68 ...
4 years, 7 months ago (2016-05-12 12:50:14 UTC) #25
aleloi
Minor changes to comply with style guide's naming conventions. https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h File webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h (right): https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h#newcode301 webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h:301: ...
4 years, 7 months ago (2016-05-12 12:52:18 UTC) #26
kwiberg-webrtc
https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc File webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc (right): https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc#newcode37 webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc:37: }; Please document. Alternatively, move this definition to just ...
4 years, 7 months ago (2016-05-12 13:01:52 UTC) #27
aleloi
Responses to comments, new CL https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc File webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc (right): https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc#newcode50 webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc:50: } On 2016/05/12 13:01:51, ...
4 years, 7 months ago (2016-05-12 13:25:47 UTC) #28
aleloi
Responses to comments, new CL
4 years, 7 months ago (2016-05-12 13:25:50 UTC) #29
the sun
On 2016/05/12 13:25:50, aleloi wrote: > Responses to comments, new CL I'll be OOO and ...
4 years, 7 months ago (2016-05-12 13:52:54 UTC) #30
aleloi
I removed the string names and added an enum class in AudioEncoder. There are large ...
4 years, 7 months ago (2016-05-12 14:28:07 UTC) #32
ossu
It's getting there! I added a couple of comments - only one of them is ...
4 years, 7 months ago (2016-05-12 15:18:46 UTC) #33
aleloi
Replies to ossu's comments and new CL with small fixes. https://codereview.webrtc.org/1967503002/diff/100001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc File webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc (right): https://codereview.webrtc.org/1967503002/diff/100001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc#newcode254 ...
4 years, 7 months ago (2016-05-12 15:30:14 UTC) #34
kwiberg-webrtc
https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc File webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc (right): https://codereview.webrtc.org/1967503002/diff/40001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc#newcode50 webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc:50: } On 2016/05/12 13:25:46, aleloi wrote: > On 2016/05/12 ...
4 years, 7 months ago (2016-05-12 23:30:22 UTC) #35
aleloi
Responses to commends & minor fixes. https://codereview.webrtc.org/1967503002/diff/120001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc File webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc (right): https://codereview.webrtc.org/1967503002/diff/120001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc#newcode42 webrtc/modules/audio_coding/acm2/audio_coding_module_impl.cc:42: } // namespace ...
4 years, 7 months ago (2016-05-13 09:02:27 UTC) #36
ossu
Just one little, tiny comment. Other than that, I'm satisfied with the CL. lgtm https://codereview.webrtc.org/1967503002/diff/140001/webrtc/modules/audio_coding/codecs/audio_encoder.h ...
4 years, 7 months ago (2016-05-13 09:14:30 UTC) #37
hlundin-webrtc
LGTM with a few nits. https://codereview.webrtc.org/1967503002/diff/140001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/1967503002/diff/140001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode33 webrtc/modules/audio_coding/codecs/audio_encoder.h:33: kOther = 0, // ...
4 years, 7 months ago (2016-05-13 09:54:23 UTC) #38
aleloi
Very small changes from ossu's and hlundin's comments. Waiting for kwiberg to comment. https://codereview.webrtc.org/1967503002/diff/140001/webrtc/modules/audio_coding/codecs/g722/audio_encoder_g722.cc File ...
4 years, 7 months ago (2016-05-13 10:56:07 UTC) #39
aleloi
https://codereview.webrtc.org/1967503002/diff/140001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/1967503002/diff/140001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode44 webrtc/modules/audio_coding/codecs/audio_encoder.h:44: kMaxLoggedAudioCodecNames = 64 On 2016/05/13 09:14:30, ossu wrote: > ...
4 years, 7 months ago (2016-05-13 10:56:53 UTC) #40
hlundin-webrtc
https://codereview.webrtc.org/1967503002/diff/160001/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h File webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h (right): https://codereview.webrtc.org/1967503002/diff/160001/webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h#newcode18 webrtc/modules/audio_coding/codecs/isac/audio_encoder_isac_t_impl.h:18: #include "webrtc/modules/audio_coding/codecs/audio_encoder.h" Still not needed... or?
4 years, 7 months ago (2016-05-13 11:18:19 UTC) #41
Steven Holte
https://codereview.webrtc.org/1967503002/diff/120001/webrtc/modules/audio_coding/codecs/audio_encoder.h File webrtc/modules/audio_coding/codecs/audio_encoder.h (right): https://codereview.webrtc.org/1967503002/diff/120001/webrtc/modules/audio_coding/codecs/audio_encoder.h#newcode45 webrtc/modules/audio_coding/codecs/audio_encoder.h:45: kMaxLoggedAudioCodecNames = 64 On 2016/05/13 09:02:27, aleloi wrote: > ...
4 years, 7 months ago (2016-05-13 21:20:59 UTC) #43
kwiberg-webrtc
Getting close now... https://codereview.webrtc.org/1967503002/diff/120001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h File webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h (right): https://codereview.webrtc.org/1967503002/diff/120001/webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h#newcode302 webrtc/modules/audio_coding/acm2/audio_coding_module_impl.h:302: size_t number_of_consecutive_empty_packets_; On 2016/05/13 09:02:27, aleloi ...
4 years, 7 months ago (2016-05-15 02:06:14 UTC) #44
aleloi
I fixed hlundin's and kwiberg's last comments. kMaxLoggedAudioCodecTypes is just as large as it needs ...
4 years, 7 months ago (2016-05-16 08:02:24 UTC) #45
kwiberg-webrtc
lgtm, with some minor comments Good job! https://codereview.webrtc.org/1967503002/diff/180001/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h File webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h (right): https://codereview.webrtc.org/1967503002/diff/180001/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h#newcode60 webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h:60: // in ...
4 years, 7 months ago (2016-05-16 08:13:26 UTC) #46
aleloi
Removed unnecessary AudioEncoder:: scoping operator. https://codereview.webrtc.org/1967503002/diff/180001/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h File webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h (right): https://codereview.webrtc.org/1967503002/diff/180001/webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h#newcode60 webrtc/modules/audio_coding/codecs/g711/audio_encoder_pcm.h:60: // in AudioEncoderPcm::EncodeImpl On ...
4 years, 7 months ago (2016-05-16 08:20:49 UTC) #47
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1967503002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1967503002/200001
4 years, 7 months ago (2016-05-16 09:38:07 UTC) #50
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/14719)
4 years, 7 months ago (2016-05-16 09:42:39 UTC) #52
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1967503002/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1967503002/220001
4 years, 7 months ago (2016-05-16 09:44:18 UTC) #55
commit-bot: I haz the power
Try jobs failed on following builders: win_x64_gn_rel on tryserver.webrtc (JOB_FAILED, http://build.chromium.org/p/tryserver.webrtc/builders/win_x64_gn_rel/builds/9263)
4 years, 7 months ago (2016-05-16 09:56:09 UTC) #57
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1967503002/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1967503002/240001
4 years, 7 months ago (2016-05-16 10:02:57 UTC) #60
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/14722)
4 years, 7 months ago (2016-05-16 10:06:48 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1967503002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1967503002/260001
4 years, 7 months ago (2016-05-16 10:46:13 UTC) #65
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1967503002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1967503002/260001
4 years, 7 months ago (2016-05-16 11:13:33 UTC) #68
commit-bot: I haz the power
Try jobs failed on following builders: android_arm64_rel on tryserver.webrtc (JOB_TIMED_OUT, no build URL)
4 years, 7 months ago (2016-05-16 12:46:57 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1967503002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1967503002/260001
4 years, 7 months ago (2016-05-16 12:50:17 UTC) #72
commit-bot: I haz the power
Committed patchset #14 (id:260001)
4 years, 7 months ago (2016-05-16 14:34:30 UTC) #73
commit-bot: I haz the power
Patchset 14 (id:??) landed as https://crrev.com/8bce67b7451d2d75390410dd7bbc82078ccfb2c9 Cr-Commit-Position: refs/heads/master@{#12760}
4 years, 7 months ago (2016-05-16 14:34:40 UTC) #75
aleloi
Hurray! Thanks for all the comments :)
4 years, 7 months ago (2016-05-16 14:38:35 UTC) #76
Steven Holte
4 years, 7 months ago (2016-05-17 00:35:50 UTC) #77
Message was sent while issue was closed.
lgtm

Powered by Google App Engine
This is Rietveld 408576698