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

Issue 231283005: Add live mode detection in WebM MediaSource parser. (Closed)

Created:
6 years, 8 months ago by Sergey Ulanov
Modified:
6 years, 7 months ago
CC:
chromium-reviews, feature-media-reviews_chromium.org
Visibility:
Public.

Description

Add live mode detection in WebM MediaSource parser. The live mode is indicated by presense of DateUTC element and unknown segment duration and size. BUG=338529 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=266452

Patch Set 1 : #

Total comments: 10

Patch Set 2 : #

Patch Set 3 : #

Total comments: 1

Patch Set 4 : #

Total comments: 3

Patch Set 5 : #

Patch Set 6 : #

Total comments: 4

Patch Set 7 : #

Total comments: 4

Patch Set 8 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+66 lines, -2 lines) Patch
M media/base/demuxer.h View 1 2 3 4 5 6 7 2 chunks +9 lines, -0 lines 0 comments Download
M media/base/mock_filters.h View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M media/base/stream_parser.h View 1 2 3 4 5 6 1 chunk +3 lines, -0 lines 0 comments Download
M media/base/stream_parser.cc View 1 2 3 4 5 6 1 chunk +2 lines, -1 line 0 comments Download
M media/filters/chunk_demuxer.h View 1 2 3 4 5 6 2 chunks +2 lines, -0 lines 0 comments Download
M media/filters/chunk_demuxer.cc View 1 2 3 4 5 6 3 chunks +16 lines, -0 lines 0 comments Download
M media/filters/ffmpeg_demuxer.h View 1 2 3 4 5 6 2 chunks +4 lines, -0 lines 0 comments Download
M media/filters/ffmpeg_demuxer.cc View 1 2 3 4 5 6 7 3 chunks +14 lines, -0 lines 0 comments Download
M media/formats/webm/webm_stream_parser.h View 1 chunk +2 lines, -0 lines 0 comments Download
M media/formats/webm/webm_stream_parser.cc View 1 2 3 4 5 6 4 chunks +13 lines, -1 line 0 comments Download

Messages

Total messages: 28 (0 generated)
Sergey Ulanov
6 years, 8 months ago (2014-04-09 19:28:50 UTC) #1
scherkus (not reviewing)
overall looks fine can we turn your test site into an end to end test? ...
6 years, 8 months ago (2014-04-10 18:17:52 UTC) #2
Sergey Ulanov
On 2014/04/10 18:17:52, scherkus wrote: > overall looks fine > > can we turn your ...
6 years, 8 months ago (2014-04-10 19:40:30 UTC) #3
scherkus (not reviewing)
few sanity checks 'n nits -- I don't mind whether it's low-delay or live mode, ...
6 years, 8 months ago (2014-04-10 21:11:48 UTC) #4
Sergey Ulanov
https://codereview.chromium.org/231283005/diff/10001/media/base/video_decoder_config.h File media/base/video_decoder_config.h (right): https://codereview.chromium.org/231283005/diff/10001/media/base/video_decoder_config.h#newcode140 media/base/video_decoder_config.h:140: // Returns true if the decoder should try to ...
6 years, 8 months ago (2014-04-10 23:10:06 UTC) #5
acolwell GONE FROM CHROMIUM
I haven't looked at all of this code yet, but I'd like to at least ...
6 years, 8 months ago (2014-04-11 15:04:09 UTC) #6
Sergey Ulanov
PTAL. Merged with the trunk that contains your change for DateUTC On 2014/04/11 15:04:09, acolwell ...
6 years, 8 months ago (2014-04-21 19:23:24 UTC) #7
Sergey Ulanov
acolwell, scherkus: ping
6 years, 8 months ago (2014-04-23 02:50:14 UTC) #8
acolwell GONE FROM CHROMIUM
Putting "live mode" in VideoDecoderConfig doesn't seem right to me. The "live"-ness is a presentation-level ...
6 years, 8 months ago (2014-04-23 16:06:02 UTC) #9
Sergey Ulanov
On 2014/04/23 16:06:02, acolwell wrote: > Putting "live mode" in VideoDecoderConfig doesn't seem right to ...
6 years, 8 months ago (2014-04-23 21:08:37 UTC) #10
Sergey Ulanov
PTAL. now live_mode() is exposed in Demuxer, and I renamed the parameter in VideoDecoderConfig to ...
6 years, 8 months ago (2014-04-24 02:55:14 UTC) #11
acolwell GONE FROM CHROMIUM
I really think we should split this up into a few CLs. 1. Create a ...
6 years, 8 months ago (2014-04-24 16:59:35 UTC) #12
Sergey Ulanov
On Thu, Apr 24, 2014 at 9:59 AM, <acolwell@chromium.org> wrote: > I really think we ...
6 years, 8 months ago (2014-04-24 18:19:12 UTC) #13
acolwell GONE FROM CHROMIUM
On 2014/04/24 18:19:12, Sergey Ulanov wrote: > On Thu, Apr 24, 2014 at 9:59 AM, ...
6 years, 8 months ago (2014-04-24 19:16:41 UTC) #14
Sergey Ulanov
On 2014/04/24 19:16:41, acolwell wrote: > On 2014/04/24 18:19:12, Sergey Ulanov wrote: > > On ...
6 years, 8 months ago (2014-04-24 19:29:47 UTC) #15
acolwell GONE FROM CHROMIUM
On 2014/04/24 19:29:47, Sergey Ulanov wrote: > On 2014/04/24 19:16:41, acolwell wrote: > > On ...
6 years, 8 months ago (2014-04-24 19:37:35 UTC) #16
Sergey Ulanov
PTAL: rebased this change on top of https://codereview.chromium.org/254473006 and removed decoder changes.
6 years, 8 months ago (2014-04-24 20:05:37 UTC) #17
acolwell GONE FROM CHROMIUM
looks good. Just a few minor comments. https://codereview.chromium.org/231283005/diff/150001/media/filters/chunk_demuxer.cc File media/filters/chunk_demuxer.cc (right): https://codereview.chromium.org/231283005/diff/150001/media/filters/chunk_demuxer.cc#newcode1517 media/filters/chunk_demuxer.cc:1517: live_mode_ |= ...
6 years, 8 months ago (2014-04-24 21:14:15 UTC) #18
Sergey Ulanov
https://codereview.chromium.org/231283005/diff/150001/media/filters/chunk_demuxer.cc File media/filters/chunk_demuxer.cc (right): https://codereview.chromium.org/231283005/diff/150001/media/filters/chunk_demuxer.cc#newcode1517 media/filters/chunk_demuxer.cc:1517: live_mode_ |= params.live_mode; On 2014/04/24 21:14:16, acolwell wrote: > ...
6 years, 8 months ago (2014-04-24 23:17:44 UTC) #19
acolwell GONE FROM CHROMIUM
lgtm % nits https://codereview.chromium.org/231283005/diff/210001/media/base/demuxer.h File media/base/demuxer.h (right): https://codereview.chromium.org/231283005/diff/210001/media/base/demuxer.h#newcode101 media/base/demuxer.h:101: // Returns liveness of the stream, ...
6 years, 8 months ago (2014-04-25 23:30:51 UTC) #20
Sergey Ulanov
https://codereview.chromium.org/231283005/diff/210001/media/base/demuxer.h File media/base/demuxer.h (right): https://codereview.chromium.org/231283005/diff/210001/media/base/demuxer.h#newcode101 media/base/demuxer.h:101: // Returns liveness of the stream, i.e. whether it ...
6 years, 8 months ago (2014-04-26 01:51:03 UTC) #21
Sergey Ulanov
The CQ bit was checked by sergeyu@chromium.org
6 years, 8 months ago (2014-04-26 01:51:19 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sergeyu@chromium.org/231283005/230001
6 years, 8 months ago (2014-04-26 02:04:27 UTC) #23
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 8 months ago (2014-04-26 03:06:19 UTC) #24
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.chromium on win_chromium_rel
6 years, 8 months ago (2014-04-26 03:06:20 UTC) #25
Sergey Ulanov
The CQ bit was checked by sergeyu@chromium.org
6 years, 8 months ago (2014-04-27 07:55:54 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sergeyu@chromium.org/231283005/230001
6 years, 8 months ago (2014-04-27 07:56:51 UTC) #27
commit-bot: I haz the power
6 years, 7 months ago (2014-04-28 06:51:04 UTC) #28
Message was sent while issue was closed.
Change committed as 266452

Powered by Google App Engine
This is Rietveld 408576698