| OLD | NEW |
| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 FOURCC_SOUN = 0x736f756e, | 78 FOURCC_SOUN = 0x736f756e, |
| 79 FOURCC_SSIX = 0x73736978, | 79 FOURCC_SSIX = 0x73736978, |
| 80 FOURCC_STBL = 0x7374626c, | 80 FOURCC_STBL = 0x7374626c, |
| 81 FOURCC_STCO = 0x7374636f, | 81 FOURCC_STCO = 0x7374636f, |
| 82 FOURCC_STSC = 0x73747363, | 82 FOURCC_STSC = 0x73747363, |
| 83 FOURCC_STSD = 0x73747364, | 83 FOURCC_STSD = 0x73747364, |
| 84 FOURCC_STSS = 0x73747373, | 84 FOURCC_STSS = 0x73747373, |
| 85 FOURCC_STSZ = 0x7374737a, | 85 FOURCC_STSZ = 0x7374737a, |
| 86 FOURCC_STTS = 0x73747473, | 86 FOURCC_STTS = 0x73747473, |
| 87 FOURCC_STYP = 0x73747970, | 87 FOURCC_STYP = 0x73747970, |
| 88 FOURCC_SUBT = 0x73756274, |
| 88 FOURCC_TENC = 0x74656e63, | 89 FOURCC_TENC = 0x74656e63, |
| 90 FOURCC_TEXT = 0x74657874, |
| 89 FOURCC_TFDT = 0x74666474, | 91 FOURCC_TFDT = 0x74666474, |
| 90 FOURCC_TFHD = 0x74666864, | 92 FOURCC_TFHD = 0x74666864, |
| 91 FOURCC_TKHD = 0x746b6864, | 93 FOURCC_TKHD = 0x746b6864, |
| 92 FOURCC_TRAF = 0x74726166, | 94 FOURCC_TRAF = 0x74726166, |
| 93 FOURCC_TRAK = 0x7472616b, | 95 FOURCC_TRAK = 0x7472616b, |
| 94 FOURCC_TREX = 0x74726578, | 96 FOURCC_TREX = 0x74726578, |
| 95 FOURCC_TRUN = 0x7472756e, | 97 FOURCC_TRUN = 0x7472756e, |
| 96 FOURCC_UDTA = 0x75647461, | 98 FOURCC_UDTA = 0x75647461, |
| 97 FOURCC_UUID = 0x75756964, | 99 FOURCC_UUID = 0x75756964, |
| 98 FOURCC_VIDE = 0x76696465, | 100 FOURCC_VIDE = 0x76696465, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 118 } | 120 } |
| 119 } | 121 } |
| 120 | 122 |
| 121 return std::string(buf); | 123 return std::string(buf); |
| 122 } | 124 } |
| 123 | 125 |
| 124 } // namespace mp4 | 126 } // namespace mp4 |
| 125 } // namespace media | 127 } // namespace media |
| 126 | 128 |
| 127 #endif // MEDIA_FORMATS_MP4_FOURCCS_H_ | 129 #endif // MEDIA_FORMATS_MP4_FOURCCS_H_ |
| OLD | NEW |