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

Issue 1124423008: MJPEG acceleration for video capture using VAAPI, the GPU and IPC part (Closed)

Created:
5 years, 7 months ago by kcwu
Modified:
5 years, 1 month ago
CC:
chromium-reviews, posciak+watch_chromium.org, jam, mcasas+watch_chromium.org, sievers+watch_chromium.org, jbauman+watch_chromium.org, feature-media-reviews_chromium.org, darin-cc_chromium.org, kalyank, piman+watch_chromium.org, danakj+watch_chromium.org, wjia+watch_chromium.org, henryhsu, mcasas
Base URL:
https://chromium.googlesource.com/chromium/src.git@mjpeg-1-media
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

MJPEG acceleration for video capture using VAAPI, the GPU and IPC part This is the GPU and IPC part of the acceleration. The acceleration is not enabled yet with this CL. Once enabled (together with other CLs), the performance numbers to decode 1280x720 images: Latency (percentile) 50% 99% max software decode (libjpeg_turbo): 7.1ms 7.6ms 12.9ms hardware decode (VAAPI): 4.5ms 5.0ms 15.7ms CPU usage user sys total software decode (libjpeg_turbo): 19.3% 2.1% 21.4% hardware decode (VAAPI): 14.0% 4.7% 18.7% Tested on peppy chromebook (haswell) using apprtc.appspot.com (not connected yet and no loopback) CPU scaling governor set to "performance". "latency" means time from DQBUF to DoIncomingCapturedVideoFrameOnIOThread. "CPU" is whole chrome usage, measured by mpstat. BUG=335778 TEST=none Committed: https://crrev.com/2bdb8a4d9f21dd1effcff644f182dff8eba179a3 Cr-Commit-Position: refs/heads/master@{#335008}

Patch Set 1 #

Total comments: 49

Patch Set 2 : #

Patch Set 3 : gpu_jpeg_decode_accelerator.cc filter to dispatch decode task #

Total comments: 15

Patch Set 4 : #

Total comments: 68

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Total comments: 29

Patch Set 8 : #

Patch Set 9 : rebase due to VideoFrame refactoring #

Patch Set 10 : #

Total comments: 10

Patch Set 11 : split out host part #

Total comments: 20

Patch Set 12 : rebase only #

Patch Set 13 : #

Total comments: 9

Patch Set 14 : validate params #

Patch Set 15 : fix compile #

Patch Set 16 : fix compile for windows & gn #

Patch Set 17 : rebase, fix nits #

Patch Set 18 : add back jpeg_decode_accelerator.cc #

Unified diffs Side-by-side diffs Delta from patch set Stats (+900 lines, -35 lines) Patch
M content/common/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +4 lines, -0 lines 0 comments Download
M content/common/gpu/DEPS View 1 chunk +1 line, -0 lines 0 comments Download
M content/common/gpu/gpu_channel.h View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +4 lines, -0 lines 0 comments Download
M content/common/gpu/gpu_channel.cc View 1 2 3 4 5 6 7 8 9 10 11 12 3 chunks +10 lines, -0 lines 0 comments Download
M content/common/gpu/gpu_messages.h View 1 2 3 4 5 6 7 8 9 10 11 5 chunks +43 lines, -0 lines 0 comments Download
A content/common/gpu/media/gpu_jpeg_decode_accelerator.h View 1 2 3 4 5 6 7 1 chunk +71 lines, -0 lines 0 comments Download
A content/common/gpu/media/gpu_jpeg_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +384 lines, -0 lines 0 comments Download
A content/common/gpu/media/vaapi_jpeg_decode_accelerator.h View 1 2 3 4 5 6 7 1 chunk +113 lines, -0 lines 0 comments Download
A content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +249 lines, -0 lines 0 comments Download
M content/content_common.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +4 lines, -0 lines 0 comments Download
M media/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 13 14 15 16 17 1 chunk +2 lines, -0 lines 0 comments Download
M media/media.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +2 lines, -0 lines 0 comments Download
M media/video/jpeg_decode_accelerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 5 chunks +11 lines, -30 lines 0 comments Download
A + media/video/jpeg_decode_accelerator.cc View 1 2 13 14 15 16 17 1 chunk +2 lines, -5 lines 0 comments Download

Messages

Total messages: 84 (18 generated)
kcwu
@piman, please take a look. This is split from https://codereview.chromium.org/1016773002/ . This patch contains only ...
5 years, 7 months ago (2015-05-18 14:07:59 UTC) #2
kcwu
xhwang: owner review for media/ jln: security review for content/common/gpu/gpu_messages.h
5 years, 7 months ago (2015-05-18 14:16:33 UTC) #4
xhwang
media/ lgtm
5 years, 7 months ago (2015-05-18 18:13:11 UTC) #5
piman
https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc File content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc (right): https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode47 content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc:47: channel_ = NULL; nit: nullptr https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode62 content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc:62: return false; ...
5 years, 7 months ago (2015-05-18 22:46:20 UTC) #6
kcwu
https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc File content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc (right): https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode47 content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc:47: channel_ = NULL; On 2015/05/18 22:46:18, piman (Very slow ...
5 years, 7 months ago (2015-05-22 19:46:51 UTC) #7
kcwu
(haven't addressed all comments yet)
5 years, 7 months ago (2015-05-22 19:48:13 UTC) #8
piman
https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc File content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc (right): https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode122 content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc:122: delete this; On 2015/05/22 19:46:50, kcwu wrote: > On ...
5 years, 7 months ago (2015-05-22 22:27:49 UTC) #9
kcwu
gpu_jpeg_decode_accelerator.cc revised. PTAL. thanks. https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc File content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc (right): https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode122 content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc:122: delete this; On 2015/05/22 22:27:48, ...
5 years, 7 months ago (2015-05-25 18:57:17 UTC) #10
kcwu
https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc File content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc (right): https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc#newcode54 content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc:54: decoder_thread_("VaapiJpegDecoderThread"), On 2015/05/18 22:46:19, piman (Very slow to review) ...
5 years, 7 months ago (2015-05-26 14:51:31 UTC) #11
piman
On Tue, May 26, 2015 at 7:51 AM, <kcwu@chromium.org> wrote: > > > https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc > ...
5 years, 7 months ago (2015-05-26 22:57:11 UTC) #12
piman
https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc File content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc (right): https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode83 content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc:83: DCHECK(base::SharedMemory::IsHandleValid(input_handle)); ShareToGpuProcess can legitimately fail, at least if the ...
5 years, 7 months ago (2015-05-26 23:31:53 UTC) #13
kcwu
I will continue remain work tomorrow. https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc File content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc (right): https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode83 content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc:83: DCHECK(base::SharedMemory::IsHandleValid(input_handle)); On 2015/05/26 ...
5 years, 7 months ago (2015-05-27 14:13:24 UTC) #14
piman
https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc File content/common/gpu/media/gpu_jpeg_decode_accelerator.cc (right): https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc#newcode115 content/common/gpu/media/gpu_jpeg_decode_accelerator.cc:115: base::Unretained(owner_), *route_id)); On 2015/05/27 14:13:23, kcwu wrote: > On ...
5 years, 7 months ago (2015-05-27 21:08:41 UTC) #15
wuchengli
https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc File content/common/gpu/media/gpu_jpeg_decode_accelerator.cc (right): https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc#newcode115 content/common/gpu/media/gpu_jpeg_decode_accelerator.cc:115: base::Unretained(owner_), *route_id)); On 2015/05/27 21:08:40, piman (Very slow to ...
5 years, 6 months ago (2015-05-28 03:41:39 UTC) #16
Pawel Osciak
https://chromiumcodereview.appspot.com/1124423008/diff/60001/content/common/BUILD.gn File content/common/BUILD.gn (right): https://chromiumcodereview.appspot.com/1124423008/diff/60001/content/common/BUILD.gn#newcode387 content/common/BUILD.gn:387: "gpu/media/vaapi_jpeg_decode_accelerator.cc", Nit: Please fix order (above vaapi_picture). https://chromiumcodereview.appspot.com/1124423008/diff/60001/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc File ...
5 years, 6 months ago (2015-05-28 09:13:19 UTC) #17
kcwu
Addressed most of comments. I'm still working on the life cycle issue between GpuChannelHost and ...
5 years, 6 months ago (2015-05-28 12:10:29 UTC) #18
piman
On Wed, May 27, 2015 at 8:41 PM, <wuchengli@chromium.org> wrote: > > > https://codereview.chromium.org/1124423008/diff/40001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc > ...
5 years, 6 months ago (2015-05-28 18:16:57 UTC) #19
kcwu
On 2015/05/28 18:16:57, piman (Very slow to review) wrote: > On Wed, May 27, 2015 ...
5 years, 6 months ago (2015-05-28 19:05:16 UTC) #20
piman
On Thu, May 28, 2015 at 12:05 PM, <kcwu@chromium.org> wrote: > On 2015/05/28 18:16:57, piman ...
5 years, 6 months ago (2015-05-28 21:22:45 UTC) #21
piman
https://codereview.chromium.org/1124423008/diff/120001/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc File content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc (right): https://codereview.chromium.org/1124423008/diff/120001/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode93 content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc:93: base::ScopedFD(input_handle.fd); This won't work on non-posix. You can use ...
5 years, 6 months ago (2015-05-28 22:01:40 UTC) #22
piman
+jschuh, forgot to add. Please see comment in https://codereview.chromium.org/1124423008/diff/120001/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc#newcode93
5 years, 6 months ago (2015-05-28 22:02:32 UTC) #24
kcwu
https://codereview.chromium.org/1124423008/diff/120001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc File content/common/gpu/media/gpu_jpeg_decode_accelerator.cc (right): https://codereview.chromium.org/1124423008/diff/120001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc#newcode42 content/common/gpu/media/gpu_jpeg_decode_accelerator.cc:42: : public media::JpegDecodeAccelerator::Client { On 2015/05/28 22:01:40, piman (Very ...
5 years, 6 months ago (2015-05-29 11:11:25 UTC) #25
piman
https://codereview.chromium.org/1124423008/diff/120001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc File content/common/gpu/media/gpu_jpeg_decode_accelerator.cc (right): https://codereview.chromium.org/1124423008/diff/120001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc#newcode176 content/common/gpu/media/gpu_jpeg_decode_accelerator.cc:176: params.input_buffer_handle, On 2015/05/29 11:11:25, kcwu wrote: > On 2015/05/28 ...
5 years, 6 months ago (2015-06-01 22:33:36 UTC) #26
kcwu
Addressed all comments. The only remain issue is how to properly SharedMemory::CloseHandle https://codereview.chromium.org/1124423008/diff/1/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.h File content/common/gpu/client/gpu_jpeg_decode_accelerator_host.h ...
5 years, 6 months ago (2015-06-02 15:07:26 UTC) #27
piman
The gpu process side looks good modulo nits, but I think the host side needs ...
5 years, 6 months ago (2015-06-05 21:49:40 UTC) #28
wuchengli
jschuh and jln: owner review for gpu_messages.h. Thanks.
5 years, 6 months ago (2015-06-08 08:53:06 UTC) #29
kcwu
The GPU host part is split into a separate CL https://codereview.chromium.org/1165943008 https://codereview.chromium.org/1124423008/diff/180001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc File content/common/gpu/media/gpu_jpeg_decode_accelerator.cc (right): ...
5 years, 6 months ago (2015-06-08 13:31:09 UTC) #30
kcwu
In summary, there are total 4 CLs for MJPEG acceleration. They are - https://codereview.chromium.org/1124423008/ GPU ...
5 years, 6 months ago (2015-06-08 14:06:40 UTC) #31
kcwu
(host side fixed in https://codereview.chromium.org/1165943008 ) https://codereview.chromium.org/1124423008/diff/180001/content/common/gpu/client/gpu_channel_host.cc File content/common/gpu/client/gpu_channel_host.cc (right): https://codereview.chromium.org/1124423008/diff/180001/content/common/gpu/client/gpu_channel_host.cc#newcode279 content/common/gpu/client/gpu_channel_host.cc:279: decoder->AsWeakPtr(), io_task_runner)); On ...
5 years, 6 months ago (2015-06-08 19:28:49 UTC) #32
kcwu
@piman, do you continue to review this CL or did you lgtm the wrong one? ...
5 years, 6 months ago (2015-06-09 08:33:52 UTC) #33
piman
On 2015/06/09 08:33:52, kcwu wrote: > @piman, do you continue to review this CL or ...
5 years, 6 months ago (2015-06-09 15:02:17 UTC) #34
kcwu
jschuh and jln: security review for gpu_messages.h, please. All other files already got lgtm. piman: ...
5 years, 6 months ago (2015-06-10 06:22:17 UTC) #35
Pawel Osciak
https://chromiumcodereview.appspot.com/1124423008/diff/200001/content/common/gpu/gpu_channel.h File content/common/gpu/gpu_channel.h (right): https://chromiumcodereview.appspot.com/1124423008/diff/200001/content/common/gpu/gpu_channel.h#newcode21 content/common/gpu/gpu_channel.h:21: #include "content/common/gpu/media/gpu_jpeg_decode_accelerator.h" This is not required here I believe, ...
5 years, 6 months ago (2015-06-10 08:02:45 UTC) #36
wuchengli
+nasko nasko@ OWNER review for gpu_messages.h. Thanks.
5 years, 6 months ago (2015-06-11 01:02:02 UTC) #38
wuchengli
https://chromiumcodereview.appspot.com/1124423008/diff/200001/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc File content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc (right): https://chromiumcodereview.appspot.com/1124423008/diff/200001/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc#newcode21 content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc:21: // TODO(kcwu) report error to UMA On 2015/06/10 08:02:45, ...
5 years, 6 months ago (2015-06-11 05:36:54 UTC) #39
kcwu
https://codereview.chromium.org/1124423008/diff/200001/content/common/gpu/gpu_channel.h File content/common/gpu/gpu_channel.h (right): https://codereview.chromium.org/1124423008/diff/200001/content/common/gpu/gpu_channel.h#newcode21 content/common/gpu/gpu_channel.h:21: #include "content/common/gpu/media/gpu_jpeg_decode_accelerator.h" On 2015/06/10 08:02:44, Pawel Osciak wrote: > ...
5 years, 6 months ago (2015-06-11 07:29:16 UTC) #40
Pawel Osciak
lgtm https://codereview.chromium.org/1124423008/diff/200001/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc File content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc (right): https://codereview.chromium.org/1124423008/diff/200001/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc#newcode190 content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc:190: if (!vaapi_wrapper_->CreateSurfaces(coded_size, 1, &va_surfaces)) { On 2015/06/11 07:29:15, ...
5 years, 6 months ago (2015-06-11 09:12:07 UTC) #41
nasko
Adding palmer@ to do the IPC review, as I won't have the chance in the ...
5 years, 6 months ago (2015-06-11 18:41:52 UTC) #43
palmer
Not done reviewing yet, but here are some initial comments/questions. Note also typo in commit ...
5 years, 6 months ago (2015-06-11 23:28:28 UTC) #44
jln (very slow on Chromium)
https://chromiumcodereview.appspot.com/1124423008/diff/240001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc File content/common/gpu/media/gpu_jpeg_decode_accelerator.cc (right): https://chromiumcodereview.appspot.com/1124423008/diff/240001/content/common/gpu/media/gpu_jpeg_decode_accelerator.cc#newcode160 content/common/gpu/media/gpu_jpeg_decode_accelerator.cc:160: const AcceleratedJpegDecoderMsg_Decode_Params& params) { Could you validate all the ...
5 years, 6 months ago (2015-06-11 23:57:11 UTC) #45
palmer
https://codereview.chromium.org/1124423008/diff/240001/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc File content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc (right): https://codereview.chromium.org/1124423008/diff/240001/content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc#newcode21 content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc:21: // TODO(kcwu) report error to UMA It's probably best ...
5 years, 6 months ago (2015-06-12 00:29:16 UTC) #46
wuchengli
On 2015/06/11 23:28:28, palmer wrote: > Not done reviewing yet, but here are some initial ...
5 years, 6 months ago (2015-06-12 02:26:33 UTC) #47
wuchengli
https://codereview.chromium.org/1124423008/diff/240001/content/common/gpu/media/gpu_jpeg_decode_accelerator.h File content/common/gpu/media/gpu_jpeg_decode_accelerator.h (right): https://codereview.chromium.org/1124423008/diff/240001/content/common/gpu/media/gpu_jpeg_decode_accelerator.h#newcode50 content/common/gpu/media/gpu_jpeg_decode_accelerator.h:50: // GpuChannels destroy all the GpuJpegDecodeAccelerator that they own ...
5 years, 6 months ago (2015-06-12 02:29:42 UTC) #48
kcwu
https://codereview.chromium.org/1124423008/diff/240001/content/common/gpu/gpu_messages.h File content/common/gpu/gpu_messages.h (right): https://codereview.chromium.org/1124423008/diff/240001/content/common/gpu/gpu_messages.h#newcode63 content/common/gpu/gpu_messages.h:63: IPC_ENUM_TRAITS_MAX_VALUE(media::JpegDecodeAccelerator::Error, On 2015/06/11 23:28:28, palmer wrote: > It might ...
5 years, 6 months ago (2015-06-12 12:22:01 UTC) #49
kcwu
@palmer, could you take another look? thanks.
5 years, 6 months ago (2015-06-15 13:46:55 UTC) #50
palmer
I get that this is a net win for MJPEG decoding, but I'm wondering about ...
5 years, 6 months ago (2015-06-15 18:18:05 UTC) #51
piman
On Mon, Jun 15, 2015 at 11:18 AM, <palmer@chromium.org> wrote: > I get that this ...
5 years, 6 months ago (2015-06-15 18:41:47 UTC) #52
palmer
> I'm not sure I understand the concerns - this CL doesn't run computations > ...
5 years, 6 months ago (2015-06-15 18:59:05 UTC) #53
piman
On Mon, Jun 15, 2015 at 11:59 AM, <palmer@chromium.org> wrote: > I'm not sure I ...
5 years, 6 months ago (2015-06-15 19:18:03 UTC) #54
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1124423008/260001
5 years, 6 months ago (2015-06-16 07:44:58 UTC) #57
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/48070) linux_chromium_gn_rel on ...
5 years, 6 months ago (2015-06-16 08:01:16 UTC) #59
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1124423008/280001
5 years, 6 months ago (2015-06-16 08:35:52 UTC) #62
wuchengli
On 2015/06/15 18:59:05, palmer wrote: > > I'm not sure I understand the concerns - ...
5 years, 6 months ago (2015-06-16 08:41:21 UTC) #63
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/48076)
5 years, 6 months ago (2015-06-16 08:57: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/1124423008/300001
5 years, 6 months ago (2015-06-16 10:14:44 UTC) #68
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/71181)
5 years, 6 months ago (2015-06-16 10:22:52 UTC) #70
kcwu
Ah, just found palmer@ is not listed as gpu_messages.h OWNERS. and I don't understand why ...
5 years, 6 months ago (2015-06-16 13:16:43 UTC) #71
palmer
> Ah, just found palmer@ is not listed as gpu_messages.h OWNERS. Oops, sorry! Fixing that, ...
5 years, 6 months ago (2015-06-16 19:13:52 UTC) #72
wuchengli
On 2015/06/16 19:13:52, palmer wrote: > > Ah, just found palmer@ is not listed as ...
5 years, 6 months ago (2015-06-18 00:04:30 UTC) #73
wuchengli
On 2015/06/18 00:04:30, wuchengli wrote: > On 2015/06/16 19:13:52, palmer wrote: > > > Ah, ...
5 years, 6 months ago (2015-06-18 00:15:39 UTC) #74
kcwu
https://chromiumcodereview.appspot.com/1124423008/diff/200001/media/video/jpeg_decode_accelerator.cc File media/video/jpeg_decode_accelerator.cc (right): https://chromiumcodereview.appspot.com/1124423008/diff/200001/media/video/jpeg_decode_accelerator.cc#newcode1 media/video/jpeg_decode_accelerator.cc:1: // Copyright 2015 The Chromium Authors. All rights reserved. ...
5 years, 6 months ago (2015-06-18 08:25:47 UTC) #75
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1124423008/340001
5 years, 6 months ago (2015-06-18 08:27:00 UTC) #78
commit-bot: I haz the power
Try jobs failed on following builders: win8_chromium_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win8_chromium_ng/builds/7621)
5 years, 6 months ago (2015-06-18 09:20:12 UTC) #80
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1124423008/340001
5 years, 6 months ago (2015-06-18 09:24:29 UTC) #82
commit-bot: I haz the power
Committed patchset #18 (id:340001)
5 years, 6 months ago (2015-06-18 10:45:03 UTC) #83
commit-bot: I haz the power
5 years, 6 months ago (2015-06-18 10:46:03 UTC) #84
Message was sent while issue was closed.
Patchset 18 (id:??) landed as
https://crrev.com/2bdb8a4d9f21dd1effcff644f182dff8eba179a3
Cr-Commit-Position: refs/heads/master@{#335008}

Powered by Google App Engine
This is Rietveld 408576698