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

Issue 430583005: Make VEA test support videos with different coded size and visible size (Closed)

Created:
6 years, 4 months ago by henryhsu
Modified:
6 years, 3 months ago
CC:
chromium-reviews, posciak+watch_chromium.org, jam, mcasas+watch_chromium.org, feature-media-reviews_chromium.org, darin-cc_chromium.org, piman+watch_chromium.org, wjia+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Make VEA test support videos with different coded size and visible size Test input streams that do not meet encoder size requirements exactly. Because ARM platform need 64 bytes alignment for starting address of YUV planes of frames, use MemoryMappedFile to create input buffer and copy data line by line from visible size to coded size. So VEA test can test more Hangout resolutions now. Original flow: prepare input memory -> initialize VEAClient -> initialize Encoder New flow: initialize VEAClient -> get coded size -> prepare input memory BUG=378166 TEST=Manually run auto test with h264 and vp8 on peach pit. Pass ./base_unittests --gtest_filter=MemoryMappedFileTest.* Committed: https://crrev.com/fb04d233f44676c70cec847d0322c26ac32a256e Cr-Commit-Position: refs/heads/master@{#295913}

Patch Set 1 #

Total comments: 20

Patch Set 2 : YUV data alignment #

Patch Set 3 : use AppendToFile #

Patch Set 4 : Coded size alignment #

Patch Set 5 : Copy data line by line #

Total comments: 24

Patch Set 6 : Use MemoryMappedFile to copy data #

Patch Set 7 : address wucheng's review comments #

Total comments: 4

Patch Set 8 : address rvargas review comments #

Total comments: 40

Patch Set 9 : address review comments of patch set 7 and 8 #

Total comments: 25

Patch Set 10 : address review comments of patch set 9 #

Total comments: 19

Patch Set 11 : address review comments of patch set 10 #

Total comments: 19

Patch Set 12 : address review comments of patch set 11 #

Total comments: 10

Patch Set 13 : address review comments of patch set 12 #

Total comments: 2

Patch Set 14 : use scope_ptr for MemoryMappedFile object #

Total comments: 6

Patch Set 15 : rollback to file write #

Total comments: 19

Patch Set 16 : address review comments of patch set 15 #

Total comments: 6

Patch Set 17 : address review comments of patch set 16 #

Patch Set 18 : MemoryMappedFile starting address checking #

Total comments: 71

Patch Set 19 : address Pawel's review comments #

Total comments: 35

Patch Set 20 : address review comments of patch set 19 #

Total comments: 6

Patch Set 21 : address review comments of patch set 20 #

Total comments: 4

Patch Set 22 : fix all nits #

Total comments: 1

Patch Set 23 : fix comments and tested on intel platform #

Patch Set 24 : fix padding bug #

Unified diffs Side-by-side diffs Delta from patch set Stats (+328 lines, -165 lines) Patch
M content/common/gpu/media/video_encode_accelerator_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 21 chunks +311 lines, -157 lines 0 comments Download
M media/base/video_frame.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +5 lines, -1 line 0 comments Download
M media/base/video_frame.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3 chunks +12 lines, -7 lines 0 comments Download

Messages

Total messages: 85 (14 generated)
henryhsu
6 years, 4 months ago (2014-07-30 08:10:23 UTC) #1
wuchengli
https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode791 content/common/gpu/media/video_encode_accelerator_unittest.cc:791: input_coded_size_.width(), All strides should be test_stream_.size. Right? https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode795 content/common/gpu/media/video_encode_accelerator_unittest.cc:795: ...
6 years, 4 months ago (2014-07-30 09:32:51 UTC) #2
henryhsu
On 2014/07/30 09:32:51, wuchengli wrote: > https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc > File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): > > https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode791 > ...
6 years, 4 months ago (2014-07-30 09:42:45 UTC) #3
Pawel Osciak
https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode117 content/common/gpu/media/video_encode_accelerator_unittest.cc:117: static void PrepareAlignedTempFile( Plenty of things may fail here, ...
6 years, 4 months ago (2014-08-01 00:48:33 UTC) #4
henryhsu
https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/1/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode121 content/common/gpu/media/video_encode_accelerator_unittest.cc:121: base::File *file = new base::File(base::FilePath("temp" + filename), On 2014/08/01 ...
6 years, 4 months ago (2014-08-01 04:55:56 UTC) #5
Pawel Osciak
Why not use base::AppendToFile()?
6 years, 4 months ago (2014-08-01 06:27:07 UTC) #6
henryhsu
On 2014/08/01 06:27:07, Pawel Osciak wrote: > Why not use base::AppendToFile()? AppendToFile use FilePath and ...
6 years, 4 months ago (2014-08-01 06:31:33 UTC) #7
wuchengli
Please add more detailed change description. The title also sounds change.
6 years, 4 months ago (2014-08-20 09:52:28 UTC) #8
henryhsu
PTAL
6 years, 4 months ago (2014-08-20 09:53:37 UTC) #9
Pawel Osciak
On 2014/08/20 09:53:37, henryhsu wrote: > PTAL Please do not rebase on top of other ...
6 years, 4 months ago (2014-08-20 10:51:31 UTC) #10
henryhsu
On 2014/08/20 10:51:31, Pawel Osciak wrote: > On 2014/08/20 09:53:37, henryhsu wrote: > > PTAL ...
6 years, 4 months ago (2014-08-21 02:36:24 UTC) #11
henryhsu
PTAL
6 years, 4 months ago (2014-08-26 02:48:02 UTC) #12
Pawel Osciak
On 2014/08/26 02:48:02, henryhsu wrote: > PTAL Please try to use MemoryMappedFile for the temporary ...
6 years, 4 months ago (2014-08-26 08:51:16 UTC) #13
wuchengli
- Use more descriptive subject. Like "Make VEA test support videos with different coded size ...
6 years, 4 months ago (2014-08-26 09:20:53 UTC) #14
wuchengli
I'll finish the review tomorrow. Here are the comments so far. https://codereview.chromium.org/430583005/diff/100001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): ...
6 years, 4 months ago (2014-08-26 09:53:25 UTC) #15
henryhsu
henryhsu@chromium.org changed reviewers: + rvargas@chromium.org, scherkus@chromium.org
6 years, 4 months ago (2014-08-26 10:50:45 UTC) #16
henryhsu
scherkus@chromium.org: Please review changes in rvargas@chromium.org: Please review changes in
6 years, 4 months ago (2014-08-26 10:50:45 UTC) #17
rvargas (doing something else)
https://codereview.chromium.org/430583005/diff/140001/base/files/memory_mapped_file.cc File base/files/memory_mapped_file.cc (right): https://codereview.chromium.org/430583005/diff/140001/base/files/memory_mapped_file.cc#newcode34 base/files/memory_mapped_file.cc:34: bool MemoryMappedFile::Initialize(const FilePath& file_name) { This method documentation states ...
6 years, 3 months ago (2014-08-26 21:25:21 UTC) #18
henryhsu
PTAL
6 years, 3 months ago (2014-08-27 02:37:00 UTC) #19
henryhsu
PTAL
6 years, 3 months ago (2014-08-27 02:37:09 UTC) #20
henryhsu
https://codereview.chromium.org/430583005/diff/100001/content/common/gpu/media/v4l2_video_device.cc File content/common/gpu/media/v4l2_video_device.cc (right): https://codereview.chromium.org/430583005/diff/100001/content/common/gpu/media/v4l2_video_device.cc#newcode134 content/common/gpu/media/v4l2_video_device.cc:134: DCHECK_LE(format.fmt.pix_mp.plane_fmt[i].bytesperline, On 2014/08/26 09:20:53, wuchengli wrote: > Remove. This ...
6 years, 3 months ago (2014-08-27 02:59:06 UTC) #21
wuchengli
- Add TEST= in the change description. - In the change description, explain we add ...
6 years, 3 months ago (2014-08-27 05:46:25 UTC) #22
henryhsu
https://codereview.chromium.org/430583005/diff/160001/base/files/memory_mapped_file_posix.cc File base/files/memory_mapped_file_posix.cc (right): https://codereview.chromium.org/430583005/diff/160001/base/files/memory_mapped_file_posix.cc#newcode65 base/files/memory_mapped_file_posix.cc:65: PROT_READ | PROT_WRITE, The read/write permission setting should be ...
6 years, 3 months ago (2014-08-27 07:22:40 UTC) #23
henryhsu
all done. PTAL https://codereview.chromium.org/430583005/diff/160001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/160001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode111 content/common/gpu/media/video_encode_accelerator_unittest.cc:111: base::FilePath temp_file; On 2014/08/27 05:46:24, wuchengli ...
6 years, 3 months ago (2014-08-27 10:07:29 UTC) #24
henryhsu
Patchset #9 (id:180001) has been deleted
6 years, 3 months ago (2014-08-27 10:11:07 UTC) #25
rvargas (doing something else)
https://codereview.chromium.org/430583005/diff/200001/base/files/memory_mapped_file_posix.cc File base/files/memory_mapped_file_posix.cc (right): https://codereview.chromium.org/430583005/diff/200001/base/files/memory_mapped_file_posix.cc#newcode63 base/files/memory_mapped_file_posix.cc:63: int flags = PROT_READ; I'm sorry, but you are ...
6 years, 3 months ago (2014-08-27 18:24:25 UTC) #26
wuchengli
Remember to test on Windows since you modified memory_mapped_file_win.cc. https://codereview.chromium.org/430583005/diff/160001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/160001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode158 content/common/gpu/media/video_encode_accelerator_unittest.cc:158: ...
6 years, 3 months ago (2014-08-28 08:33:02 UTC) #27
henryhsu
all done. PTAL https://codereview.chromium.org/430583005/diff/200001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/200001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode124 content/common/gpu/media/video_encode_accelerator_unittest.cc:124: // in it were not 64 ...
6 years, 3 months ago (2014-08-28 09:36:45 UTC) #28
wuchengli
https://codereview.chromium.org/430583005/diff/200001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/200001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode214 content/common/gpu/media/video_encode_accelerator_unittest.cc:214: base::DeleteFile(temp_file, false); On 2014/08/28 09:36:44, henryhsu wrote: > On ...
6 years, 3 months ago (2014-08-28 10:17:48 UTC) #29
henryhsu
all done https://codereview.chromium.org/430583005/diff/200001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/200001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode214 content/common/gpu/media/video_encode_accelerator_unittest.cc:214: base::DeleteFile(temp_file, false); On 2014/08/28 10:17:48, wuchengli wrote: ...
6 years, 3 months ago (2014-08-29 06:36:41 UTC) #30
wuchengli
Looking good! https://codereview.chromium.org/430583005/diff/220001/base/files/memory_mapped_file_win.cc File base/files/memory_mapped_file_win.cc (right): https://codereview.chromium.org/430583005/diff/220001/base/files/memory_mapped_file_win.cc#newcode30 base/files/memory_mapped_file_win.cc:30: flags = SEC_IMAGE | PAGE_READONLY; On 2014/08/29 ...
6 years, 3 months ago (2014-08-29 10:03:11 UTC) #31
rvargas (doing something else)
https://codereview.chromium.org/430583005/diff/240001/base/files/memory_mapped_file.h File base/files/memory_mapped_file.h (right): https://codereview.chromium.org/430583005/diff/240001/base/files/memory_mapped_file.h#newcode63 base/files/memory_mapped_file.h:63: bool Initialize(File file, bool write); These two methods look ...
6 years, 3 months ago (2014-08-29 20:08:59 UTC) #32
henryhsu
PTAL https://codereview.chromium.org/430583005/diff/240001/base/files/memory_mapped_file.h File base/files/memory_mapped_file.h (right): https://codereview.chromium.org/430583005/diff/240001/base/files/memory_mapped_file.h#newcode51 base/files/memory_mapped_file.h:51: // Later we may want to allow the ...
6 years, 3 months ago (2014-09-01 05:53:45 UTC) #33
wuchengli
https://codereview.chromium.org/430583005/diff/240001/base/files/memory_mapped_file.h File base/files/memory_mapped_file.h (right): https://codereview.chromium.org/430583005/diff/240001/base/files/memory_mapped_file.h#newcode63 base/files/memory_mapped_file.h:63: bool Initialize(File file, bool write); On 2014/09/01 05:53:44, henryhsu ...
6 years, 3 months ago (2014-09-01 06:57:16 UTC) #34
henryhsu
groby@chromium.org: Please review changes in chrome/renderer/spellchecker/hunspell_engine.cc toyoshim@chromium.org: Please review changes in components/translate/content/renderer/data_file_renderer_cld_data_provider.cc tony@chromium.org: Please review ...
6 years, 3 months ago (2014-09-01 07:49:49 UTC) #36
wuchengli
https://codereview.chromium.org/430583005/diff/280001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/280001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode114 content/common/gpu/media/video_encode_accelerator_unittest.cc:114: base::MemoryMappedFile* input_file; Use scoped_ptr to indicate ownership.
6 years, 3 months ago (2014-09-01 08:20:42 UTC) #37
henryhsu
rlp@chromium.org: Please review changes in chrome/renderer/spellchecker/hunspell_engine.cc https://codereview.chromium.org/430583005/diff/280001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/280001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode114 content/common/gpu/media/video_encode_accelerator_unittest.cc:114: base::MemoryMappedFile* input_file; On ...
6 years, 3 months ago (2014-09-01 08:57:36 UTC) #39
wuchengli
https://codereview.chromium.org/430583005/diff/300001/base/files/memory_mapped_file.h File base/files/memory_mapped_file.h (right): https://codereview.chromium.org/430583005/diff/300001/base/files/memory_mapped_file.h#newcode53 base/files/memory_mapped_file.h:53: // As above, works with an already-opened file, closes ...
6 years, 3 months ago (2014-09-01 09:19:25 UTC) #40
Takashi Toyoshima
For Translate, Andrew is the best reviewer on the modified file.
6 years, 3 months ago (2014-09-01 13:55:50 UTC) #42
Andrew Hayden (chromium.org)
On 2014/09/01 13:55:50, Takashi Toyoshima (chromium) wrote: > For Translate, Andrew is the best reviewer ...
6 years, 3 months ago (2014-09-01 14:31:24 UTC) #43
groby-ooo-7-16
I'm extremely uncomfortable having the API for memory mapped files changed to be writable via ...
6 years, 3 months ago (2014-09-01 21:41:20 UTC) #45
Pawel Osciak
Well, I'm definitely no expert, but I would assume this wouldn't be the only API ...
6 years, 3 months ago (2014-09-02 00:18:09 UTC) #46
wuchengli
Henry. You can use test fixture and per-testcase SetUp to construct the test files only ...
6 years, 3 months ago (2014-09-02 03:16:30 UTC) #47
tony
I agree that we don't need to change the public interface for MemoryMappedFile just for ...
6 years, 3 months ago (2014-09-02 16:22:05 UTC) #48
Tom Sepez
https://codereview.chromium.org/430583005/diff/300001/base/files/memory_mapped_file.h File base/files/memory_mapped_file.h (right): https://codereview.chromium.org/430583005/diff/300001/base/files/memory_mapped_file.h#newcode53 base/files/memory_mapped_file.h:53: // As above, works with an already-opened file, closes ...
6 years, 3 months ago (2014-09-02 16:57:15 UTC) #49
henryhsu
rollback to file write approach. PTAL.
6 years, 3 months ago (2014-09-03 03:32:27 UTC) #50
wuchengli
https://codereview.chromium.org/430583005/diff/320001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/320001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode120 content/common/gpu/media/video_encode_accelerator_unittest.cc:120: unsigned int default_requested_bitrate; We really should not mix global ...
6 years, 3 months ago (2014-09-04 03:34:30 UTC) #51
henryhsu
all done. PTAL https://codereview.chromium.org/430583005/diff/320001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/320001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode120 content/common/gpu/media/video_encode_accelerator_unittest.cc:120: unsigned int default_requested_bitrate; On 2014/09/04 03:34:29, ...
6 years, 3 months ago (2014-09-04 08:06:19 UTC) #52
wuchengli
https://codereview.chromium.org/430583005/diff/320001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/320001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode218 content/common/gpu/media/video_encode_accelerator_unittest.cc:218: const uint8* ptr = input_file->data() + dest_offset; On 2014/09/04 ...
6 years, 3 months ago (2014-09-04 08:24:40 UTC) #53
henryhsu
all done https://codereview.chromium.org/430583005/diff/340001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/340001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode122 content/common/gpu/media/video_encode_accelerator_unittest.cc:122: unsigned int default_requested_subsequent_bitrate; On 2014/09/04 08:24:40, wuchengli ...
6 years, 3 months ago (2014-09-04 08:54:56 UTC) #54
wuchengli
lgtm
6 years, 3 months ago (2014-09-04 09:32:37 UTC) #55
wuchengli
On 2014/09/01 21:41:20, groby (OOO until Sep. 8) wrote: > I'm extremely uncomfortable having the ...
6 years, 3 months ago (2014-09-05 02:23:31 UTC) #56
wuchengli
On 2014/09/05 02:23:31, wuchengli wrote: > On 2014/09/01 21:41:20, groby (OOO until Sep. 8) wrote: ...
6 years, 3 months ago (2014-09-05 02:24:04 UTC) #57
Pawel Osciak
https://chromiumcodereview.appspot.com/430583005/diff/380001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://chromiumcodereview.appspot.com/430583005/diff/380001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode36 content/common/gpu/media/video_encode_accelerator_unittest.cc:36: #define ALIGN_64_BYTES(x) (((x) + 63) & ~63) Inline static ...
6 years, 3 months ago (2014-09-05 07:21:34 UTC) #58
groby-ooo-7-16
LGTM
6 years, 3 months ago (2014-09-09 18:07:32 UTC) #59
groby-ooo-7-16
On 2014/09/09 18:07:32, groby (OOO until Sep. 8) wrote: > LGTM To clarify: RSLGTM in ...
6 years, 3 months ago (2014-09-09 18:23:22 UTC) #60
henryhsu
Hi Pawel, PTAL. https://codereview.chromium.org/430583005/diff/380001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/380001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode36 content/common/gpu/media/video_encode_accelerator_unittest.cc:36: #define ALIGN_64_BYTES(x) (((x) + 63) & ...
6 years, 3 months ago (2014-09-10 11:01:50 UTC) #62
scherkus (not reviewing)
lgtm
6 years, 3 months ago (2014-09-10 17:42:22 UTC) #63
Pawel Osciak
https://chromiumcodereview.appspot.com/430583005/diff/380001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://chromiumcodereview.appspot.com/430583005/diff/380001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode188 content/common/gpu/media/video_encode_accelerator_unittest.cc:188: padding_sizes[i] = padding_rows * coded_bpl[i] + padding_bytes; On 2014/09/10 ...
6 years, 3 months ago (2014-09-11 09:51:47 UTC) #64
henryhsu
all done. https://codereview.chromium.org/430583005/diff/420001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (left): https://codereview.chromium.org/430583005/diff/420001/content/common/gpu/media/video_encode_accelerator_unittest.cc#oldcode1061 content/common/gpu/media/video_encode_accelerator_unittest.cc:1061: On 2014/09/11 09:51:47, Pawel Osciak wrote: > ...
6 years, 3 months ago (2014-09-11 11:39:11 UTC) #65
Pawel Osciak
Just tiny nits :) https://chromiumcodereview.appspot.com/430583005/diff/420001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://chromiumcodereview.appspot.com/430583005/diff/420001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode195 content/common/gpu/media/video_encode_accelerator_unittest.cc:195: size_t padding_rows = On 2014/09/11 ...
6 years, 3 months ago (2014-09-17 09:58:28 UTC) #66
henryhsu
PTAL https://codereview.chromium.org/430583005/diff/440001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/440001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode171 content/common/gpu/media/video_encode_accelerator_unittest.cc:171: if (test_stream->mapped_aligned_in_file.IsValid()) On 2014/09/17 09:58:28, Pawel Osciak wrote: ...
6 years, 3 months ago (2014-09-17 10:42:23 UTC) #67
Pawel Osciak
lgtm % nits https://codereview.chromium.org/430583005/diff/460001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/460001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode174 content/common/gpu/media/video_encode_accelerator_unittest.cc:174: ASSERT_TRUE(!test_stream->mapped_aligned_in_file.IsValid() || Please add a comment ...
6 years, 3 months ago (2014-09-17 13:42:02 UTC) #68
henryhsu
all done https://codereview.chromium.org/430583005/diff/460001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/430583005/diff/460001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode174 content/common/gpu/media/video_encode_accelerator_unittest.cc:174: ASSERT_TRUE(!test_stream->mapped_aligned_in_file.IsValid() || On 2014/09/17 13:42:02, Pawel Osciak ...
6 years, 3 months ago (2014-09-18 03:41:23 UTC) #69
Pawel Osciak
lgtm, please also test on Intel before submitting https://chromiumcodereview.appspot.com/430583005/diff/480001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://chromiumcodereview.appspot.com/430583005/diff/480001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode174 content/common/gpu/media/video_encode_accelerator_unittest.cc:174: // ...
6 years, 3 months ago (2014-09-18 06:33:27 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/430583005/500001
6 years, 3 months ago (2014-09-19 06:52:43 UTC) #76
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/430583005/520001
6 years, 3 months ago (2014-09-19 07:55:16 UTC) #79
commit-bot: I haz the power
Exceeded time limit waiting for builds to trigger.
6 years, 3 months ago (2014-09-19 09:55:58 UTC) #81
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/430583005/520001
6 years, 3 months ago (2014-09-22 02:39:38 UTC) #83
commit-bot: I haz the power
Committed patchset #24 (id:520001) as 454546abe018d0b1a1241720e4777cecb2459311
6 years, 3 months ago (2014-09-22 03:46:17 UTC) #84
commit-bot: I haz the power
6 years, 3 months ago (2014-09-22 03:47:21 UTC) #85
Message was sent while issue was closed.
Patchset 24 (id:??) landed as
https://crrev.com/fb04d233f44676c70cec847d0322c26ac32a256e
Cr-Commit-Position: refs/heads/master@{#295913}

Powered by Google App Engine
This is Rietveld 408576698