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

Side by Side 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, 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_MPEG2_MPEG2TS_DEF_H_
6 #define MEDIA_MPEG2_MPEG2TS_DEF_H_
7
8 namespace media {
9 namespace mpeg2ts {
10
11 enum StreamId {
12 kProgramStreamMap = 0xbc,
13 kPrivateStream1 = 0xbd,
14 kPaddingStream = 0xbe,
15 kPrivateStream2 = 0xbf,
16
17 kEcmStream = 0xf0,
18 kEmmStream = 0xf1,
19 kDsmccStream = 0xf2,
20 kItu222TypeEStream = 0xf8,
21 kAncillaryStream = 0xf9,
22 kProgramStreamDirectory = 0xff,
23 };
24
25 } // namespace mpeg2ts
26 } // namespace media
27
28 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698