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

Issue 1258083003: Add VP9 raw bits reader (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 VP9 raw bits reader TEST=media_unittests BUG=509500 Committed: https://crrev.com/0cc8eab5c0edb6438345dd1cb8483373923c3951 Cr-Commit-Position: refs/heads/master@{#342607}

Patch Set 1 #

Patch Set 2 : remove dependent files from this CL #

Patch Set 3 : rewrite using media::BitReader #

Total comments: 2

Patch Set 4 : #

Patch Set 5 : copyright; nits #

Total comments: 9

Patch Set 6 : rename IsOutOfBuffer to IsValid #

Total comments: 4

Patch Set 7 : #

Total comments: 2

Patch Set 8 : #

Patch Set 9 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+183 lines, -0 lines) Patch
M media/BUILD.gn View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -0 lines 0 comments Download
A media/filters/vp9_raw_bits_reader.h View 1 2 3 4 5 6 1 chunk +62 lines, -0 lines 0 comments Download
A media/filters/vp9_raw_bits_reader.cc View 1 2 3 4 5 6 7 1 chunk +49 lines, -0 lines 0 comments Download
A media/filters/vp9_raw_bits_reader_unittest.cc View 1 2 3 4 5 1 chunk +66 lines, -0 lines 0 comments Download
M media/media.gyp View 1 2 3 4 5 6 7 8 2 chunks +3 lines, -0 lines 0 comments Download

Messages

Total messages: 29 (5 generated)
kcwu
5 years, 4 months ago (2015-07-29 13:18:23 UTC) #2
kcwu
This CL depends on https://codereview.chromium.org/1269473002/ IVF parser.
5 years, 4 months ago (2015-07-29 13:18:59 UTC) #3
kcwu
sorry, please ignore my comment #3, which is not for this CL.
5 years, 4 months ago (2015-07-29 13:20:17 UTC) #4
kcwu
Please hold on the review of this CL. I will keep the interface and rewrite ...
5 years, 4 months ago (2015-07-30 04:33:49 UTC) #5
kcwu
PTAL
5 years, 4 months ago (2015-07-30 12:42:32 UTC) #6
Owen Lin
A general question, do we need this class, can't we just use BitReader? May be ...
5 years, 4 months ago (2015-07-31 04:25:32 UTC) #7
kcwu
On 2015/07/31 04:25:32, Owen Lin wrote: > A general question, do we need this class, ...
5 years, 4 months ago (2015-07-31 09:38:59 UTC) #8
kcwu
https://codereview.chromium.org/1258083003/diff/40001/media/filters/vp9_raw_bits_reader.h File media/filters/vp9_raw_bits_reader.h (right): https://codereview.chromium.org/1258083003/diff/40001/media/filters/vp9_raw_bits_reader.h#newcode32 media/filters/vp9_raw_bits_reader.h:32: // Returns how many bytes read. On 2015/07/31 04:25:32, ...
5 years, 4 months ago (2015-07-31 09:39:54 UTC) #9
Owen Lin
lgtm
5 years, 4 months ago (2015-07-31 13:46:12 UTC) #10
Owen Lin
lgtm lgtm
5 years, 4 months ago (2015-07-31 13:46:14 UTC) #11
Owen Lin
https://codereview.chromium.org/1258083003/diff/80001/media/filters/vp9_raw_bits_reader.cc File media/filters/vp9_raw_bits_reader.cc (right): https://codereview.chromium.org/1258083003/diff/80001/media/filters/vp9_raw_bits_reader.cc#newcode34 media/filters/vp9_raw_bits_reader.cc:34: out_of_buffer_ = !reader_->ReadBits(bits, &value); Use out_of_buffer |= !reader_->ReadBits ...
5 years, 4 months ago (2015-08-01 11:35:37 UTC) #12
Pawel Osciak
https://chromiumcodereview.appspot.com/1258083003/diff/80001/media/BUILD.gn File media/BUILD.gn (right): https://chromiumcodereview.appspot.com/1258083003/diff/80001/media/BUILD.gn#newcode223 media/BUILD.gn:223: "filters/vp9_raw_bits_reader.cc", Perhaps we should call it vp9_bit_reader to match ...
5 years, 4 months ago (2015-08-02 10:46:11 UTC) #13
kcwu
https://codereview.chromium.org/1258083003/diff/80001/media/BUILD.gn File media/BUILD.gn (right): https://codereview.chromium.org/1258083003/diff/80001/media/BUILD.gn#newcode223 media/BUILD.gn:223: "filters/vp9_raw_bits_reader.cc", On 2015/08/02 10:46:11, Pawel Osciak wrote: > Perhaps ...
5 years, 4 months ago (2015-08-03 07:10:14 UTC) #15
Pawel Osciak
lgtm
5 years, 4 months ago (2015-08-05 07:08:43 UTC) #16
Pawel Osciak
oh sorry, lgtm with nits. https://chromiumcodereview.appspot.com/1258083003/diff/100001/media/filters/vp9_raw_bits_reader.h File media/filters/vp9_raw_bits_reader.h (right): https://chromiumcodereview.appspot.com/1258083003/diff/100001/media/filters/vp9_raw_bits_reader.h#newcode29 media/filters/vp9_raw_bits_reader.h:29: // Returns true if ...
5 years, 4 months ago (2015-08-05 07:08:57 UTC) #17
kcwu
https://codereview.chromium.org/1258083003/diff/100001/media/filters/vp9_raw_bits_reader.h File media/filters/vp9_raw_bits_reader.h (right): https://codereview.chromium.org/1258083003/diff/100001/media/filters/vp9_raw_bits_reader.h#newcode29 media/filters/vp9_raw_bits_reader.h:29: // Returns true if last reads don't go beyond ...
5 years, 4 months ago (2015-08-05 07:34:44 UTC) #18
Pawel Osciak
On 2015/08/05 07:34:44, kcwu wrote: > https://codereview.chromium.org/1258083003/diff/100001/media/filters/vp9_raw_bits_reader.h > File media/filters/vp9_raw_bits_reader.h (right): > > https://codereview.chromium.org/1258083003/diff/100001/media/filters/vp9_raw_bits_reader.h#newcode29 > ...
5 years, 4 months ago (2015-08-05 07:37:15 UTC) #19
kcwu
@xhwang, owner review, please. Thanks
5 years, 4 months ago (2015-08-05 07:40:50 UTC) #20
kcwu
@xhwang, owner review, please. Thanks
5 years, 4 months ago (2015-08-05 07:41:12 UTC) #22
xhwang
lgtm with nits https://codereview.chromium.org/1258083003/diff/120001/media/filters/vp9_raw_bits_reader.h File media/filters/vp9_raw_bits_reader.h (right): https://codereview.chromium.org/1258083003/diff/120001/media/filters/vp9_raw_bits_reader.h#newcode44 media/filters/vp9_raw_bits_reader.h:44: int ReadLiteral(int bits); I guess bits ...
5 years, 4 months ago (2015-08-07 21:03:08 UTC) #23
kcwu
https://codereview.chromium.org/1258083003/diff/120001/media/filters/vp9_raw_bits_reader.h File media/filters/vp9_raw_bits_reader.h (right): https://codereview.chromium.org/1258083003/diff/120001/media/filters/vp9_raw_bits_reader.h#newcode44 media/filters/vp9_raw_bits_reader.h:44: int ReadLiteral(int bits); On 2015/08/07 21:03:07, xhwang wrote: > ...
5 years, 4 months ago (2015-08-10 10:54:06 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1258083003/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1258083003/160001
5 years, 4 months ago (2015-08-10 10:54:21 UTC) #27
commit-bot: I haz the power
Committed patchset #9 (id:160001)
5 years, 4 months ago (2015-08-10 12:00:19 UTC) #28
commit-bot: I haz the power
5 years, 4 months ago (2015-08-10 12:01:02 UTC) #29
Message was sent while issue was closed.
Patchset 9 (id:??) landed as
https://crrev.com/0cc8eab5c0edb6438345dd1cb8483373923c3951
Cr-Commit-Position: refs/heads/master@{#342607}

Powered by Google App Engine
This is Rietveld 408576698