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

Unified Diff: media/formats/webm/webm_constants.h

Issue 2333663003: Add color metadata info to VideoDecoderConfig. (Closed)
Patch Set: Commented the RangeID comment as suggested Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/formats/webm/webm_colour_parser.cc ('k') | media/formats/webm/webm_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/webm/webm_constants.h
diff --git a/media/formats/webm/webm_constants.h b/media/formats/webm/webm_constants.h
index 164889589b52995cde9b935efbb49f2dac4656ad..4ca2e9450a19b101f305160e9ebb8ec0ecac84a6 100644
--- a/media/formats/webm/webm_constants.h
+++ b/media/formats/webm/webm_constants.h
@@ -22,6 +22,7 @@ const int kWebMIdAttachmentLink = 0x7446;
const int kWebMIdAttachments = 0x1941A469;
const int kWebMIdAudio = 0xE1;
const int kWebMIdBitDepth = 0x6264;
+const int kWebMIdBitsPerChannel = 0x55B2;
const int kWebMIdBlock = 0xA1;
const int kWebMIdBlockAddID = 0xEE;
const int kWebMIdBlockAdditions = 0x75A1;
@@ -29,6 +30,8 @@ const int kWebMIdBlockAdditional = 0xA5;
const int kWebMIdBlockDuration = 0x9B;
const int kWebMIdBlockGroup = 0xA0;
const int kWebMIdBlockMore = 0xA6;
+const int kWebMIdCbSubsamplingHorz = 0x55B5;
+const int kWebMIdCbSubsamplingVert = 0x55B6;
const int kWebMIdChannels = 0x9F;
const int kWebMIdChapCountry = 0x437E;
const int kWebMIdChapLanguage = 0x437C;
@@ -56,6 +59,10 @@ const int kWebMIdChapterTranslateCodec = 0x69BF;
const int kWebMIdChapterTranslateEditionUID = 0x69FC;
const int kWebMIdChapterTranslateID = 0x69A5;
const int kWebMIdChapterUID = 0x73C4;
+const int kWebMIdChromaSitingHorz = 0x55B7;
+const int kWebMIdChromaSitingVert = 0x55B8;
+const int kWebMIdChromaSubsamplingHorz = 0x55B3;
+const int kWebMIdChromaSubsamplingVert = 0x55B4;
const int kWebMIdCluster = 0x1F43B675;
const int kWebMIdCodecDecodeAll = 0xAA;
const int kWebMIdCodecDelay = 0x56AA;
@@ -64,6 +71,7 @@ const int kWebMIdCodecName = 0x258688;
const int kWebMIdCodecPrivate = 0x63A2;
const int kWebMIdCodecState = 0xA4;
const int kWebMIdColorSpace = 0x2EB524;
+const int kWebMIdColour = 0x55B0;
const int kWebMIdContentCompAlgo = 0x4254;
const int kWebMIdContentCompression = 0x5034;
const int kWebMIdContentCompSettings = 0x4255;
@@ -126,8 +134,14 @@ const int kWebMIdInfo = 0x1549A966;
const int kWebMIdJoinBlocks = 0xE9;
const int kWebMIdLaceNumber = 0xCC;
const int kWebMIdLanguage = 0x22B59C;
+const int kWebMIdLuminanceMax = 0x55D9;
+const int kWebMIdLuminanceMin = 0x55DA;
+const int kWebMIdMasteringMetadata = 0x55D0;
+const int kWebMIdMatrixCoefficients = 0x55B1;
const int kWebMIdMaxBlockAdditionId = 0x55EE;
const int kWebMIdMaxCache = 0x6DF8;
+const int kWebMIdMaxCLL = 0x55BC;
+const int kWebMIdMaxFALL = 0x55BD;
const int kWebMIdMinCache = 0x6DE7;
const int kWebMIdMuxingApp = 0x4D80;
const int kWebMIdName = 0x536E;
@@ -144,6 +158,14 @@ const int kWebMIdPosition = 0xA7;
const int kWebMIdPrevFilename = 0x3C83AB;
const int kWebMIdPrevSize = 0xAB;
const int kWebMIdPrevUID = 0x3CB923;
+const int kWebMIdPrimaries = 0x55BB;
+const int kWebMIdPrimaryBChromaticityX = 0x55D5;
+const int kWebMIdPrimaryBChromaticityY = 0x55D6;
+const int kWebMIdPrimaryGChromaticityX = 0x55D3;
+const int kWebMIdPrimaryGChromaticityY = 0x55D4;
+const int kWebMIdPrimaryRChromaticityX = 0x55D1;
+const int kWebMIdPrimaryRChromaticityY = 0x55D2;
+const int kWebMIdRange = 0x55B9;
const int kWebMIdReferenceBlock = 0xFB;
const int kWebMIdReferencePriority = 0xFA;
const int kWebMIdSamplingFrequency = 0xB5;
@@ -197,8 +219,11 @@ const int kWebMIdTrackTranslateEditionUID = 0x66FC;
const int kWebMIdTrackTranslateTrackID = 0x66A5;
const int kWebMIdTrackType = 0x83;
const int kWebMIdTrackUID = 0x73C5;
+const int kWebMIdTransferCharacteristics = 0x55BA;
const int kWebMIdVideo = 0xE0;
const int kWebMIdVoid = 0xEC;
+const int kWebMIdWhitePointChromaticityX = 0x55D7;
+const int kWebMIdWhitePointChromaticityY = 0x55D8;
const int kWebMIdWritingApp = 0x5741;
const int64_t kWebMReservedId = 0x1FFFFFFF;
« no previous file with comments | « media/formats/webm/webm_colour_parser.cc ('k') | media/formats/webm/webm_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698