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

Side by Side Diff: media/formats/mp4/fourccs.h

Issue 1718773002: Parse ELNG box in MP4 container Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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
« no previous file with comments | « media/formats/mp4/box_reader.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_FORMATS_MP4_FOURCCS_H_ 5 #ifndef MEDIA_FORMATS_MP4_FOURCCS_H_
6 #define MEDIA_FORMATS_MP4_FOURCCS_H_ 6 #define MEDIA_FORMATS_MP4_FOURCCS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "media/media_features.h" 10 #include "media/media_features.h"
(...skipping 11 matching lines...) Expand all
22 FOURCC_AVC3 = 0x61766333, 22 FOURCC_AVC3 = 0x61766333,
23 FOURCC_AVCC = 0x61766343, 23 FOURCC_AVCC = 0x61766343,
24 FOURCC_BLOC = 0x626C6F63, 24 FOURCC_BLOC = 0x626C6F63,
25 FOURCC_CENC = 0x63656e63, 25 FOURCC_CENC = 0x63656e63,
26 FOURCC_CO64 = 0x636f3634, 26 FOURCC_CO64 = 0x636f3634,
27 FOURCC_CTTS = 0x63747473, 27 FOURCC_CTTS = 0x63747473,
28 FOURCC_DINF = 0x64696e66, 28 FOURCC_DINF = 0x64696e66,
29 FOURCC_EDTS = 0x65647473, 29 FOURCC_EDTS = 0x65647473,
30 FOURCC_EMSG = 0x656d7367, 30 FOURCC_EMSG = 0x656d7367,
31 FOURCC_ELST = 0x656c7374, 31 FOURCC_ELST = 0x656c7374,
32 FOURCC_ELNG = 0x656c6e67,
32 FOURCC_ENCA = 0x656e6361, 33 FOURCC_ENCA = 0x656e6361,
33 FOURCC_ENCV = 0x656e6376, 34 FOURCC_ENCV = 0x656e6376,
34 FOURCC_ESDS = 0x65736473, 35 FOURCC_ESDS = 0x65736473,
35 FOURCC_FREE = 0x66726565, 36 FOURCC_FREE = 0x66726565,
36 FOURCC_FRMA = 0x66726d61, 37 FOURCC_FRMA = 0x66726d61,
37 FOURCC_FTYP = 0x66747970, 38 FOURCC_FTYP = 0x66747970,
38 FOURCC_HDLR = 0x68646c72, 39 FOURCC_HDLR = 0x68646c72,
39 FOURCC_HINT = 0x68696e74, 40 FOURCC_HINT = 0x68696e74,
40 #if BUILDFLAG(ENABLE_HEVC_DEMUXING) 41 #if BUILDFLAG(ENABLE_HEVC_DEMUXING)
41 FOURCC_HEV1 = 0x68657631, 42 FOURCC_HEV1 = 0x68657631,
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 } 122 }
122 } 123 }
123 124
124 return std::string(buf); 125 return std::string(buf);
125 } 126 }
126 127
127 } // namespace mp4 128 } // namespace mp4
128 } // namespace media 129 } // namespace media
129 130
130 #endif // MEDIA_FORMATS_MP4_FOURCCS_H_ 131 #endif // MEDIA_FORMATS_MP4_FOURCCS_H_
OLDNEW
« no previous file with comments | « media/formats/mp4/box_reader.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698