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

Issue 1269473002: Extract IVF parser from VP8 parser unittest (Closed)

Created:
5 years, 4 months ago by kcwu
Modified:
5 years, 4 months ago
CC:
chromium-reviews, feature-media-reviews_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add an IVF parser The IVF parser would be shared among VP8 and VP9 unittests. BUG=509500 Committed: https://crrev.com/1c051bb37f94f150a7b268cbb9d66b6e49647b60 Cr-Commit-Position: refs/heads/master@{#342341}

Patch Set 1 #

Total comments: 24

Patch Set 2 : #

Patch Set 3 : add copyright header #

Patch Set 4 : nits #

Total comments: 4

Patch Set 5 : #

Total comments: 8

Patch Set 6 : DKIF #

Total comments: 4

Patch Set 7 : #

Patch Set 8 : fix compile #

Unified diffs Side-by-side diffs Delta from patch set Stats (+270 lines, -67 lines) Patch
M content/common/gpu/media/video_encode_accelerator_unittest.cc View 1 2 3 4 5 6 7 5 chunks +18 lines, -40 lines 0 comments Download
M media/BUILD.gn View 1 2 chunks +3 lines, -0 lines 0 comments Download
A media/filters/ivf_parser.h View 1 2 3 4 5 1 chunk +86 lines, -0 lines 0 comments Download
A media/filters/ivf_parser.cc View 1 2 3 4 5 6 1 chunk +89 lines, -0 lines 0 comments Download
A media/filters/ivf_parser_unittest.cc View 1 2 3 4 5 6 7 1 chunk +56 lines, -0 lines 0 comments Download
M media/filters/vp8_parser_unittest.cc View 1 2 3 4 5 6 7 2 chunks +15 lines, -27 lines 0 comments Download
M media/media.gyp View 1 2 chunks +3 lines, -0 lines 0 comments Download

Messages

Total messages: 32 (11 generated)
kcwu
5 years, 4 months ago (2015-07-29 13:04:26 UTC) #2
xhwang
Looking good. Just a few comments. https://codereview.chromium.org/1269473002/diff/1/media/filters/ivf_parser.cc File media/filters/ivf_parser.cc (right): https://codereview.chromium.org/1269473002/diff/1/media/filters/ivf_parser.cc#newcode5 media/filters/ivf_parser.cc:5: namespace { nit: ...
5 years, 4 months ago (2015-07-29 16:43:42 UTC) #3
wuchengli
https://codereview.chromium.org/1269473002/diff/1/media/filters/ivf_parser.cc File media/filters/ivf_parser.cc (right): https://codereview.chromium.org/1269473002/diff/1/media/filters/ivf_parser.cc#newcode7 media/filters/ivf_parser.cc:7: const size_t kIvfFileHeaderSize = 32; Can we use sizeof(IvfFileHeader)? ...
5 years, 4 months ago (2015-07-30 06:26:14 UTC) #4
kcwu
I changed the implementation and provide ByteSwap() method according to the user case of video_encode_accelerator_unittest.cc. ...
5 years, 4 months ago (2015-07-30 11:52:52 UTC) #5
henryhsu
https://codereview.chromium.org/1269473002/diff/60001/media/filters/ivf_parser.h File media/filters/ivf_parser.h (right): https://codereview.chromium.org/1269473002/diff/60001/media/filters/ivf_parser.h#newcode65 media/filters/ivf_parser.h:65: // error. |frame_header| will be filled with the frame ...
5 years, 4 months ago (2015-08-05 06:22:55 UTC) #7
kcwu
https://codereview.chromium.org/1269473002/diff/60001/media/filters/ivf_parser.h File media/filters/ivf_parser.h (right): https://codereview.chromium.org/1269473002/diff/60001/media/filters/ivf_parser.h#newcode65 media/filters/ivf_parser.h:65: // error. |frame_header| will be filled with the frame ...
5 years, 4 months ago (2015-08-05 07:25:35 UTC) #8
henryhsu
https://codereview.chromium.org/1269473002/diff/80001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/1269473002/diff/80001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode1274 content/common/gpu/media/video_encode_accelerator_unittest.cc:1274: header.signature[3] = 'F'; memcpy(header.signature, media::kIvfHeaderSignature); https://codereview.chromium.org/1269473002/diff/80001/media/filters/ivf_parser.cc File media/filters/ivf_parser.cc (right): ...
5 years, 4 months ago (2015-08-05 10:45:14 UTC) #9
kcwu
https://codereview.chromium.org/1269473002/diff/80001/content/common/gpu/media/video_encode_accelerator_unittest.cc File content/common/gpu/media/video_encode_accelerator_unittest.cc (right): https://codereview.chromium.org/1269473002/diff/80001/content/common/gpu/media/video_encode_accelerator_unittest.cc#newcode1274 content/common/gpu/media/video_encode_accelerator_unittest.cc:1274: header.signature[3] = 'F'; On 2015/08/05 10:45:13, henryhsu wrote: > ...
5 years, 4 months ago (2015-08-05 11:05:16 UTC) #10
henryhsu
lgtm
5 years, 4 months ago (2015-08-06 02:25:42 UTC) #11
kcwu
@xhwang, owner review, please. Thanks
5 years, 4 months ago (2015-08-06 03:15:41 UTC) #12
xhwang
rs lgtm with nits https://codereview.chromium.org/1269473002/diff/100001/media/filters/ivf_parser.cc File media/filters/ivf_parser.cc (right): https://codereview.chromium.org/1269473002/diff/100001/media/filters/ivf_parser.cc#newcode7 media/filters/ivf_parser.cc:7: #include "media/base/bit_reader.h" Do you actually ...
5 years, 4 months ago (2015-08-06 21:56:10 UTC) #13
kcwu
https://codereview.chromium.org/1269473002/diff/100001/media/filters/ivf_parser.cc File media/filters/ivf_parser.cc (right): https://codereview.chromium.org/1269473002/diff/100001/media/filters/ivf_parser.cc#newcode7 media/filters/ivf_parser.cc:7: #include "media/base/bit_reader.h" On 2015/08/06 21:56:10, xhwang wrote: > Do ...
5 years, 4 months ago (2015-08-07 06:20:08 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269473002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269473002/120001
5 years, 4 months ago (2015-08-07 06:20:20 UTC) #17
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/86123)
5 years, 4 months ago (2015-08-07 06:29:23 UTC) #19
wuchengli
LGTM for content/common/gpu/media
5 years, 4 months ago (2015-08-07 07:13:28 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269473002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269473002/120001
5 years, 4 months ago (2015-08-07 07:22:57 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269473002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269473002/140001
5 years, 4 months ago (2015-08-07 09:21:34 UTC) #26
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/90345)
5 years, 4 months ago (2015-08-07 11:15:05 UTC) #28
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1269473002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1269473002/140001
5 years, 4 months ago (2015-08-07 12:16:57 UTC) #30
commit-bot: I haz the power
Committed patchset #8 (id:140001)
5 years, 4 months ago (2015-08-07 13:07:11 UTC) #31
commit-bot: I haz the power
5 years, 4 months ago (2015-08-07 13:07:49 UTC) #32
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/1c051bb37f94f150a7b268cbb9d66b6e49647b60
Cr-Commit-Position: refs/heads/master@{#342341}

Powered by Google App Engine
This is Rietveld 408576698