| OLD | NEW |
| 1 // Copyright (c) 2012 The WebM project authors. All Rights Reserved. | 1 // Copyright (c) 2012 The WebM project authors. All Rights Reserved. |
| 2 // | 2 // |
| 3 // Use of this source code is governed by a BSD-style license | 3 // Use of this source code is governed by a BSD-style license |
| 4 // that can be found in the LICENSE file in the root of the source | 4 // that can be found in the LICENSE file in the root of the source |
| 5 // tree. An additional intellectual property rights grant can be found | 5 // tree. An additional intellectual property rights grant can be found |
| 6 // in the file PATENTS. All contributing project authors may | 6 // in the file PATENTS. All contributing project authors may |
| 7 // be found in the AUTHORS file in the root of the source tree. | 7 // be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 #ifndef WEBMIDS_HPP | 9 #ifndef WEBMIDS_HPP |
| 10 #define WEBMIDS_HPP | 10 #define WEBMIDS_HPP |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 kMkvChapters = 0x1043A770, | 126 kMkvChapters = 0x1043A770, |
| 127 kMkvEditionEntry = 0x45B9, | 127 kMkvEditionEntry = 0x45B9, |
| 128 kMkvChapterAtom = 0xB6, | 128 kMkvChapterAtom = 0xB6, |
| 129 kMkvChapterUID = 0x73C4, | 129 kMkvChapterUID = 0x73C4, |
| 130 kMkvChapterStringUID = 0x5654, | 130 kMkvChapterStringUID = 0x5654, |
| 131 kMkvChapterTimeStart = 0x91, | 131 kMkvChapterTimeStart = 0x91, |
| 132 kMkvChapterTimeEnd = 0x92, | 132 kMkvChapterTimeEnd = 0x92, |
| 133 kMkvChapterDisplay = 0x80, | 133 kMkvChapterDisplay = 0x80, |
| 134 kMkvChapString = 0x85, | 134 kMkvChapString = 0x85, |
| 135 kMkvChapLanguage = 0x437C, | 135 kMkvChapLanguage = 0x437C, |
| 136 kMkvChapCountry = 0x437E | 136 kMkvChapCountry = 0x437E, |
| 137 // Tags |
| 138 kMkvTags = 0x1254C367, |
| 139 kMkvTag = 0x7373, |
| 140 kMkvSimpleTag = 0x67C8, |
| 141 kMkvTagName = 0x45A3, |
| 142 kMkvTagString = 0x4487 |
| 137 }; | 143 }; |
| 138 | 144 |
| 139 } // end namespace mkvmuxer | 145 } // end namespace mkvmuxer |
| 140 | 146 |
| 141 #endif // WEBMIDS_HPP | 147 #endif // WEBMIDS_HPP |
| OLD | NEW |