diff --git a/index.src.html b/index.src.html index 0a6ea365..8daa5fdb 100644 --- a/index.src.html +++ b/index.src.html @@ -4461,9 +4461,11 @@ enum VideoColorPrimaries { - "bt709", // BT.709, sRGB - "bt470bg", // BT.601 PAL - "smpte170m", // BT.601 NTSC + "bt709", + "bt470bg", + "smpte170m", + "bt2020", + "smpte432", }; @@ -4483,6 +4485,16 @@ Color primaries used by BT.601 NTSC, as described by [[H.273]] section 8.1 table 2 value 6. +
bt2020
+
+ Color primaries used by BT.2020 and BT.2100, as described by [[H.273]] + section 8.1 table 2 value 9. +
+
smpte432
+
+ Color primaries used by P3 D65, as described by [[H.273]] + section 8.1 table 2 value 12. +
Video Transfer Characteristics {#videotransfercharacteristics} @@ -4492,9 +4504,12 @@ enum VideoTransferCharacteristics { - "bt709", // BT.709 - "smpte170m", // BT.601 (functionally the same as bt709) - "iec61966-2-1", // sRGB + "bt709", + "smpte170m", + "iec61966-2-1", + "linear", + "pq", + "hlg", }; @@ -4507,13 +4522,28 @@
smpte170m
Transfer characteristics used by BT.601, as described by [[H.273]] - section 8.2 table 3 value 6. + section 8.2 table 3 value 6. (Functionally the same as "bt709".)
iec61966-2-1
Transfer characteristics used by sRGB, as described by [[H.273]] section 8.2 table 3 value 13.
+
linear
+
+ Transfer characteristics used by linear RGB, as described by [[H.273]] + section 8.2 table 3 value 8. +
+
pq
+
+ Transfer characteristics used by BT.2100 PQ, as described by [[H.273]] + section 8.2 table 3 value 16. +
+
hlg
+
+ Transfer characteristics used by BT.2100 HLG, as described by [[H.273]] + section 8.2 table 3 value 18. +
Video Matrix Coefficients {#videomatrixcoefficients} @@ -4523,10 +4553,11 @@ enum VideoMatrixCoefficients { - "rgb", // sRGB - "bt709", // BT.709 - "bt470bg", // BT.601 PAL - "smpte170m", // BT.601 NTSC (functionally the same as bt470bg) + "rgb", + "bt709", + "bt470bg", + "smpte170m", + "bt2020-ncl", }; @@ -4549,7 +4580,12 @@
smpte170m
Matrix coefficients used by BT.601 NTSC, as described by [[H.273]] - section 8.3 table 4 value 6. + section 8.3 table 4 value 6. (Functionally the same as "bt470bg".) +
+
bt2020-ncl
+
+ Matrix coefficients used by BT.2020 NCL, as described by [[H.273]] + section 8.3 table 4 value 9.