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

Issue 742233002: Implement |pic_order_cnt| computation for VTVideoDecode accelerator. (Closed)

Created:
6 years, 1 month ago by sandersd (OOO until July 31)
Modified:
6 years ago
Reviewers:
*DaleCurtis, Pawel Osciak
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@vt_reorder
Project:
chromium
Visibility:
Public.

Description

Implement |pic_order_cnt| computation for VTVideoDecode accelerator. BUG=133828 Committed: https://crrev.com/28a0919f30f41ec5f58b6f445ee3c88f0ea50b5f Cr-Commit-Position: refs/heads/master@{#305923}

Patch Set 1 #

Total comments: 22

Patch Set 2 : Address comments (other than unittesting). #

Total comments: 4

Patch Set 3 : Unittest #

Patch Set 4 : Casting #

Total comments: 2

Patch Set 5 : Zero initialization. #

Total comments: 4

Patch Set 6 : Nits #

Patch Set 7 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+564 lines, -17 lines) Patch
M content/common/gpu/media/vt_video_decode_accelerator.h View 1 2 4 chunks +13 lines, -2 lines 0 comments Download
M content/common/gpu/media/vt_video_decode_accelerator.cc View 1 2 3 4 5 6 10 chunks +33 lines, -15 lines 0 comments Download
M content/content_common.gypi View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M media/BUILD.gn View 1 2 2 chunks +3 lines, -0 lines 0 comments Download
M media/media.gyp View 1 2 2 chunks +3 lines, -0 lines 0 comments Download
A media/video/h264_poc.h View 1 2 1 chunk +40 lines, -0 lines 0 comments Download
A media/video/h264_poc.cc View 1 2 1 chunk +226 lines, -0 lines 0 comments Download
A media/video/h264_poc_unittest.cc View 1 2 3 4 5 1 chunk +245 lines, -0 lines 0 comments Download

Messages

Total messages: 17 (5 generated)
sandersd (OOO until July 31)
It's the last big CL for VTVideoDecode accelerator. So it's got that going for it, ...
6 years, 1 month ago (2014-11-20 21:23:26 UTC) #3
DaleCurtis
https://codereview.chromium.org/742233002/diff/1/content/common/gpu/media/h264_poc.cc File content/common/gpu/media/h264_poc.cc (right): https://codereview.chromium.org/742233002/diff/1/content/common/gpu/media/h264_poc.cc#newcode1 content/common/gpu/media/h264_poc.cc:1: // Copyright 2014 The Chromium Authors. All rights reserved. ...
6 years, 1 month ago (2014-11-20 23:03:30 UTC) #4
sandersd (OOO until July 31)
https://codereview.chromium.org/742233002/diff/1/content/common/gpu/media/h264_poc.cc File content/common/gpu/media/h264_poc.cc (right): https://codereview.chromium.org/742233002/diff/1/content/common/gpu/media/h264_poc.cc#newcode1 content/common/gpu/media/h264_poc.cc:1: // Copyright 2014 The Chromium Authors. All rights reserved. ...
6 years, 1 month ago (2014-11-20 23:58:25 UTC) #5
DaleCurtis
lgtm % nits. that spec is awful to read :| https://codereview.chromium.org/742233002/diff/20001/content/common/gpu/media/h264_poc.cc File content/common/gpu/media/h264_poc.cc (right): https://codereview.chromium.org/742233002/diff/20001/content/common/gpu/media/h264_poc.cc#newcode44 ...
6 years, 1 month ago (2014-11-21 21:42:05 UTC) #6
sandersd (OOO until July 31)
Now with a unittest. https://codereview.chromium.org/742233002/diff/20001/content/common/gpu/media/h264_poc.cc File content/common/gpu/media/h264_poc.cc (right): https://codereview.chromium.org/742233002/diff/20001/content/common/gpu/media/h264_poc.cc#newcode44 content/common/gpu/media/h264_poc.cc:44: // Stop at the end ...
6 years, 1 month ago (2014-11-21 23:33:16 UTC) #7
DaleCurtis
https://codereview.chromium.org/742233002/diff/60001/media/video/h264_poc_unittest.cc File media/video/h264_poc_unittest.cc (right): https://codereview.chromium.org/742233002/diff/60001/media/video/h264_poc_unittest.cc#newcode17 media/video/h264_poc_unittest.cc:17: sps_.log2_max_frame_num_minus4 = 0; If the zeros aren't really adding ...
6 years, 1 month ago (2014-11-21 23:39:57 UTC) #8
sandersd (OOO until July 31)
https://codereview.chromium.org/742233002/diff/60001/media/video/h264_poc_unittest.cc File media/video/h264_poc_unittest.cc (right): https://codereview.chromium.org/742233002/diff/60001/media/video/h264_poc_unittest.cc#newcode17 media/video/h264_poc_unittest.cc:17: sps_.log2_max_frame_num_minus4 = 0; On 2014/11/21 23:39:57, DaleCurtis wrote: > ...
6 years, 1 month ago (2014-11-21 23:44:21 UTC) #9
DaleCurtis
still lgtm % nits https://codereview.chromium.org/742233002/diff/100001/media/video/h264_poc_unittest.cc File media/video/h264_poc_unittest.cc (right): https://codereview.chromium.org/742233002/diff/100001/media/video/h264_poc_unittest.cc#newcode1 media/video/h264_poc_unittest.cc:1: // Copyright (c) 2014 The ...
6 years, 1 month ago (2014-11-21 23:51:14 UTC) #11
sandersd (OOO until July 31)
https://codereview.chromium.org/742233002/diff/100001/media/video/h264_poc_unittest.cc File media/video/h264_poc_unittest.cc (right): https://codereview.chromium.org/742233002/diff/100001/media/video/h264_poc_unittest.cc#newcode1 media/video/h264_poc_unittest.cc:1: // Copyright (c) 2014 The Chromium Authors. All rights ...
6 years, 1 month ago (2014-11-21 23:54:51 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/742233002/140001
6 years ago (2014-11-26 23:22:40 UTC) #15
commit-bot: I haz the power
Committed patchset #7 (id:140001)
6 years ago (2014-11-27 00:25:26 UTC) #16
commit-bot: I haz the power
6 years ago (2014-11-27 00:26:03 UTC) #17
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/28a0919f30f41ec5f58b6f445ee3c88f0ea50b5f
Cr-Commit-Position: refs/heads/master@{#305923}

Powered by Google App Engine
This is Rietveld 408576698