| Index: media/formats/mp2t/es_parser.cc
|
| diff --git a/media/formats/mp2t/es_parser.cc b/media/formats/mp2t/es_parser.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c57b79b0b6df5df388b4c947749315d05cc1f39a
|
| --- /dev/null
|
| +++ b/media/formats/mp2t/es_parser.cc
|
| @@ -0,0 +1,65 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "media/formats/mp2t/es_parser.h"
|
| +
|
| +#include "media/formats/common/offset_byte_queue.h"
|
| +
|
| +namespace media {
|
| +namespace mp2t {
|
| +
|
| +EsParser::TimingDesc::TimingDesc()
|
| + : dts(kNoDecodeTimestamp()),
|
| + pts(kNoTimestamp()) {
|
| +}
|
| +
|
| +EsParser::TimingDesc::TimingDesc(
|
| + DecodeTimestamp dts_in, base::TimeDelta pts_in)
|
| + : dts(dts_in),
|
| + pts(pts_in) {
|
| +}
|
| +
|
| +EsParser::EsParser()
|
| + : es_queue_(new media::OffsetByteQueue()) {
|
| +}
|
| +
|
| +EsParser::~EsParser() {
|
| +}
|
| +
|
| +bool EsParser::Parse(const uint8* buf, int size,
|
| + base::TimeDelta pts,
|
| + DecodeTimestamp dts) {
|
| + DCHECK(buf);
|
| + DCHECK_GT(size, 0);
|
| +
|
| + if (pts != kNoTimestamp()) {
|
| + // Link the end of the byte queue with the incoming timing descriptor.
|
| + TimingDesc timing_desc(dts, pts);
|
| + timing_desc_list_.push_back(
|
| + std::pair<int64, TimingDesc>(es_queue_->tail(), timing_desc));
|
| + }
|
| +
|
| + // Add the incoming bytes to the ES queue.
|
| + es_queue_->Push(buf, size);
|
| + return ParseFromEsQueue();
|
| +}
|
| +
|
| +void EsParser::Reset() {
|
| + es_queue_.reset(new media::OffsetByteQueue());
|
| + timing_desc_list_.clear();
|
| + ResetInternal();
|
| +}
|
| +
|
| +EsParser::TimingDesc EsParser::GetTimingDescriptor(int64 es_byte_count) {
|
| + TimingDesc timing_desc;
|
| + while (!timing_desc_list_.empty() &&
|
| + timing_desc_list_.front().first <= es_byte_count) {
|
| + timing_desc = timing_desc_list_.front().second;
|
| + timing_desc_list_.pop_front();
|
| + }
|
| + return timing_desc;
|
| +}
|
| +
|
| +} // namespace mp2t
|
| +} // namespace media
|
|
|