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

Side by Side Diff: media/webm/webm_constants.h

Issue 15342004: Adding VP8 Alpha support in Media Source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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
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
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 const int kWebMIdSegment = 0x18538067; 149 const int kWebMIdSegment = 0x18538067;
150 const int kWebMIdSegmentFamily = 0x4444; 150 const int kWebMIdSegmentFamily = 0x4444;
151 const int kWebMIdSegmentFilename = 0x7384; 151 const int kWebMIdSegmentFilename = 0x7384;
152 const int kWebMIdSegmentUID = 0x73A4; 152 const int kWebMIdSegmentUID = 0x73A4;
153 const int kWebMIdSilentTrackNumber = 0x58D7; 153 const int kWebMIdSilentTrackNumber = 0x58D7;
154 const int kWebMIdSilentTracks = 0x5854; 154 const int kWebMIdSilentTracks = 0x5854;
155 const int kWebMIdSimpleBlock = 0xA3; 155 const int kWebMIdSimpleBlock = 0xA3;
156 const int kWebMIdSimpleTag = 0x67C8; 156 const int kWebMIdSimpleTag = 0x67C8;
157 const int kWebMIdSlices = 0x8E; 157 const int kWebMIdSlices = 0x8E;
158 const int kWebMIdStereoMode = 0x53B8; 158 const int kWebMIdStereoMode = 0x53B8;
159 const int kWebMIdAlphaMode = 0x53C0;
acolwell GONE FROM CHROMIUM 2013/05/21 17:14:11 nit: Please place this in alphabetical order.
vignesh 2013/05/21 18:57:56 Done.
159 const int kWebMIdTag = 0x7373; 160 const int kWebMIdTag = 0x7373;
160 const int kWebMIdTagAttachmentUID = 0x63C6; 161 const int kWebMIdTagAttachmentUID = 0x63C6;
161 const int kWebMIdTagBinary = 0x4485; 162 const int kWebMIdTagBinary = 0x4485;
162 const int kWebMIdTagChapterUID = 0x63C4; 163 const int kWebMIdTagChapterUID = 0x63C4;
163 const int kWebMIdTagDefault = 0x4484; 164 const int kWebMIdTagDefault = 0x4484;
164 const int kWebMIdTagEditionUID = 0x63C9; 165 const int kWebMIdTagEditionUID = 0x63C9;
165 const int kWebMIdTagLanguage = 0x447A; 166 const int kWebMIdTagLanguage = 0x447A;
166 const int kWebMIdTagName = 0x45A3; 167 const int kWebMIdTagName = 0x45A3;
167 const int kWebMIdTags = 0x1254C367; 168 const int kWebMIdTags = 0x1254C367;
168 const int kWebMIdTagString = 0x4487; 169 const int kWebMIdTagString = 0x4487;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698