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

Unified Diff: media/mpeg2/mpeg2ts_psi.cc

Issue 23566013: Mpeg2 TS stream parser for media source. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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
Index: media/mpeg2/mpeg2ts_psi.cc
diff --git a/media/mpeg2/mpeg2ts_psi.cc b/media/mpeg2/mpeg2ts_psi.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4c24fe362fe8d97eb1ce0afe01a30dc5c1b23c00
--- /dev/null
+++ b/media/mpeg2/mpeg2ts_psi.cc
@@ -0,0 +1,127 @@
+// Copyright (c) 2013 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/mpeg2/mpeg2ts_psi.h"
+
+#include "base/logging.h"
+#include "media/base/bit_reader.h"
+#include "media/mpeg2/mpeg2ts_crc.h"
+
+namespace media {
+namespace mpeg2ts {
+
+Mpeg2TsPsiParser::Mpeg2TsPsiParser()
+ : wait_for_pusi_(true),
+ leading_bytes_to_discard_(0) {
+}
+
+Mpeg2TsPsiParser::~Mpeg2TsPsiParser() {
+}
+
+bool Mpeg2TsPsiParser::Parse(bool payload_unit_start_indicator,
+ const uint8* buf, int size) {
+ bool parse_result =
+ ParseInternal(payload_unit_start_indicator,
+ buf, size);
+ if (parse_result == false) {
+ ResetState();
+ }
+ return parse_result;
+}
+
+bool Mpeg2TsPsiParser::ParseInternal(bool payload_unit_start_indicator,
+ const uint8* buf, int size) {
+ if (wait_for_pusi_ && !payload_unit_start_indicator) {
+ // Ignore partial PSI.
+ return true;
+ }
+
+ if (payload_unit_start_indicator) {
+ // Reset the state of the PSI section.
+ int raw_psi_size = 0;
acolwell GONE FROM CHROMIUM 2013/09/05 18:29:10 nit: remove initialization since it is immediately
damienv1 2013/09/09 23:29:45 Not relevant anymore (code removed).
+ const uint8* raw_psi = NULL;
+ psi_byte_queue_.Peek(&raw_psi, &raw_psi_size);
+ LOG_IF(WARNING, raw_psi_size > 0)
acolwell GONE FROM CHROMIUM 2013/09/05 18:29:10 DVLOG here and below
damienv1 2013/09/09 23:29:45 Ditto.
+ << "Dropping state: len=" << raw_psi_size;
+ ResetState();
+
+ // Update the state.
+ wait_for_pusi_ = false;
+ DCHECK_GE(size, 1);
+ int pointer_field = buf[0];
+ leading_bytes_to_discard_ = pointer_field;
+ buf++;
+ size--;
+ }
+
+ // Discard some leading bytes if needed.
+ if (leading_bytes_to_discard_ > 0) {
+ int nbytes_to_discard = std::min(leading_bytes_to_discard_, size);
+ buf += nbytes_to_discard;
+ size -= nbytes_to_discard;
+ leading_bytes_to_discard_ -= nbytes_to_discard;
+ }
+ if (size == 0) {
acolwell GONE FROM CHROMIUM 2013/09/05 18:29:10 nit: remove{} here and all 1 line ifs below
damienv1 2013/09/09 23:29:45 Done.
+ return true;
+ }
+
+ // Add the data to the parser state.
+ psi_byte_queue_.Push(buf, size);
+ int raw_psi_size = 0;
acolwell GONE FROM CHROMIUM 2013/09/05 18:29:10 ditto
damienv1 2013/09/09 23:29:45 Done.
+ const uint8* raw_psi = NULL;
+ psi_byte_queue_.Peek(&raw_psi, &raw_psi_size);
+
+ // Check whether we have enough data to start parsing.
+ if (raw_psi_size < 3)
+ return true;
+ int section_length =
+ ((static_cast<int>(raw_psi[1]) << 8) |
+ (static_cast<int>(raw_psi[2]))) & 0xfff;
+ if (section_length >= 1021) {
+ return false;
+ }
+ int psi_length = section_length + 3;
+ if (raw_psi_size < psi_length) {
+ // Don't throw an error when there is not enough data,
+ // just wait for more data to come.
+ return true;
+ }
+
+ // There should not be any trailing bytes after a PMT.
+ // Instead, the pointer field should be used to stuff bytes.
+ LOG_IF(WARNING, raw_psi_size > psi_length)
+ << "Trailing bytes after a PSI section: "
+ << psi_length << " vs " << raw_psi_size;
+
+ // Verify the CRC.
+ Mpeg2TsCrc crc;
+ for (int k = 0; k < psi_length; k++) {
+ crc.Update(raw_psi[k], 8);
acolwell GONE FROM CHROMIUM 2013/09/05 18:29:10 This appears to be the only call site for this met
damienv1 2013/09/09 23:29:45 Done.
+ }
+ if (!crc.IsValid()) {
+ return false;
+ }
+
+ // Parse the PSI section.
+ BitReader bit_reader(raw_psi, raw_psi_size);
+ bool status = ParsePsiSection(&bit_reader);
+ if (status) {
+ ResetState();
+ }
+
+ return status;
+}
+
+void Mpeg2TsPsiParser::Flush() {
+ ResetState();
+}
+
+void Mpeg2TsPsiParser::ResetState() {
+ wait_for_pusi_ = true;
+ psi_byte_queue_.Reset();
+ leading_bytes_to_discard_ = 0;
+}
+
+} // namespace mpeg2ts
+} // namespace media

Powered by Google App Engine
This is Rietveld 408576698