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

Unified Diff: media/mpeg2/mpeg2ts_def.h

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, 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
Index: media/mpeg2/mpeg2ts_def.h
diff --git a/media/mpeg2/mpeg2ts_def.h b/media/mpeg2/mpeg2ts_def.h
new file mode 100644
index 0000000000000000000000000000000000000000..cae622d1b152db736c04cfa8054034e94e8a7fbb
--- /dev/null
+++ b/media/mpeg2/mpeg2ts_def.h
@@ -0,0 +1,28 @@
+// 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_MPEG2_MPEG2TS_DEF_H_
+#define MEDIA_MPEG2_MPEG2TS_DEF_H_
+
+namespace media {
+namespace mpeg2ts {
+
+enum StreamId {
+ kProgramStreamMap = 0xbc,
+ kPrivateStream1 = 0xbd,
+ kPaddingStream = 0xbe,
+ kPrivateStream2 = 0xbf,
+
+ kEcmStream = 0xf0,
+ kEmmStream = 0xf1,
+ kDsmccStream = 0xf2,
+ kItu222TypeEStream = 0xf8,
+ kAncillaryStream = 0xf9,
+ kProgramStreamDirectory = 0xff,
+};
+
+} // namespace mpeg2ts
+} // namespace media
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698