| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WEBM_WEBM_CONSTANTS_H_ | 5 #ifndef MEDIA_WEBM_WEBM_CONSTANTS_H_ |
| 6 #define MEDIA_WEBM_WEBM_CONSTANTS_H_ | 6 #define MEDIA_WEBM_WEBM_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "media/base/media_export.h" | 9 #include "media/base/media_export.h" |
| 10 | 10 |
| 11 namespace media { | 11 namespace media { |
| 12 | 12 |
| 13 // WebM element IDs. | 13 // WebM element IDs. |
| 14 // This is a subset of the IDs in the Matroska spec. | 14 // This is a subset of the IDs in the Matroska spec. |
| 15 // http://www.matroska.org/technical/specs/index.html | 15 // http://www.matroska.org/technical/specs/index.html |
| 16 const int kWebMIdAESSettingsCipherMode = 0x47E8; | 16 const int kWebMIdAESSettingsCipherMode = 0x47E8; |
| 17 const int kWebMIdAlphaMode = 0x53C0; |
| 17 const int kWebMIdAspectRatioType = 0x54B3; | 18 const int kWebMIdAspectRatioType = 0x54B3; |
| 18 const int kWebMIdAttachedFile = 0x61A7; | 19 const int kWebMIdAttachedFile = 0x61A7; |
| 19 const int kWebMIdAttachmentLink = 0x7446; | 20 const int kWebMIdAttachmentLink = 0x7446; |
| 20 const int kWebMIdAttachments = 0x1941A469; | 21 const int kWebMIdAttachments = 0x1941A469; |
| 21 const int kWebMIdAudio = 0xE1; | 22 const int kWebMIdAudio = 0xE1; |
| 22 const int kWebMIdBitDepth = 0x6264; | 23 const int kWebMIdBitDepth = 0x6264; |
| 23 const int kWebMIdBlock = 0xA1; | 24 const int kWebMIdBlock = 0xA1; |
| 24 const int kWebMIdBlockAddID = 0xEE; | 25 const int kWebMIdBlockAddID = 0xEE; |
| 25 const int kWebMIdBlockAdditions = 0x75A1; | 26 const int kWebMIdBlockAdditions = 0x75A1; |
| 26 const int kWebMIdBlockAdditional = 0xA5; | 27 const int kWebMIdBlockAdditional = 0xA5; |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 const int kWebMTrackTypeDescriptionsOrMetadata = 0x21; | 216 const int kWebMTrackTypeDescriptionsOrMetadata = 0x21; |
| 216 | 217 |
| 217 MEDIA_EXPORT extern const char kWebMCodecSubtitles[]; | 218 MEDIA_EXPORT extern const char kWebMCodecSubtitles[]; |
| 218 MEDIA_EXPORT extern const char kWebMCodecCaptions[]; | 219 MEDIA_EXPORT extern const char kWebMCodecCaptions[]; |
| 219 MEDIA_EXPORT extern const char kWebMCodecDescriptions[]; | 220 MEDIA_EXPORT extern const char kWebMCodecDescriptions[]; |
| 220 MEDIA_EXPORT extern const char kWebMCodecMetadata[]; | 221 MEDIA_EXPORT extern const char kWebMCodecMetadata[]; |
| 221 | 222 |
| 222 } // namespace media | 223 } // namespace media |
| 223 | 224 |
| 224 #endif // MEDIA_WEBM_WEBM_CONSTANTS_H_ | 225 #endif // MEDIA_WEBM_WEBM_CONSTANTS_H_ |
| OLD | NEW |