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

Unified Diff: media/mp2t/ts_section_pat.h

Issue 23566013: Mpeg2 TS stream parser for media source. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clang warning fix 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
« no previous file with comments | « media/mp2t/ts_section.h ('k') | media/mp2t/ts_section_pat.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mp2t/ts_section_pat.h
diff --git a/media/mp2t/ts_section_pat.h b/media/mp2t/ts_section_pat.h
new file mode 100644
index 0000000000000000000000000000000000000000..13cfb890dd93ff260bb6080c862ac3b650cbd67d
--- /dev/null
+++ b/media/mp2t/ts_section_pat.h
@@ -0,0 +1,40 @@
+// 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.
+
+#ifndef MEDIA_MP2T_TS_SECTION_PAT_H_
+#define MEDIA_MP2T_TS_SECTION_PAT_H_
+
+#include "base/callback.h"
+#include "base/compiler_specific.h"
+#include "media/mp2t/ts_section_psi.h"
+
+namespace media {
+namespace mp2t {
+
+class TsSectionPat : public TsSectionPsi {
+ public:
+ // RegisterPmtCb::Run(int program_number, int pmt_pid);
+ typedef base::Callback<void(int, int)> RegisterPmtCb;
+
+ explicit TsSectionPat(const RegisterPmtCb& register_pmt_cb);
+ virtual ~TsSectionPat();
+
+ // TsSectionPsi implementation.
+ virtual bool ParsePsiSection(BitReader* bit_reader) OVERRIDE;
+ virtual void ResetPsiSection() OVERRIDE;
+
+ private:
+ RegisterPmtCb register_pmt_cb_;
+
+ // Parameters from the PAT.
+ int version_number_;
+
+ DISALLOW_COPY_AND_ASSIGN(TsSectionPat);
+};
+
+} // namespace mp2t
+} // namespace media
+
+#endif
+
« no previous file with comments | « media/mp2t/ts_section.h ('k') | media/mp2t/ts_section_pat.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698