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

Unified Diff: media/formats/mp2t/es_parser.cc

Issue 497203004: Mpeg2 TS parser: Es parsing using an ES byte queue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add DCHECKs. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/formats/mp2t/es_parser.h ('k') | media/formats/mp2t/es_parser_adts.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « media/formats/mp2t/es_parser.h ('k') | media/formats/mp2t/es_parser_adts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698