diff options
author | Boyuan Yang <byang@debian.org> | 2023-11-27 22:46:29 -0500 |
---|---|---|
committer | Boyuan Yang <byang@debian.org> | 2023-11-27 22:46:29 -0500 |
commit | 19564cb4f77660cdb2f980ca619d4b979b9fe342 (patch) | |
tree | ff97ccd1471553f1e861c8ea747faa45a023e119 /src/gav1 | |
parent | d4dbf19f6b0181ee78034bfe4caf189d1c016998 (diff) | |
download | libgav1-19564cb4f77660cdb2f980ca619d4b979b9fe342.tar.gz libgav1-19564cb4f77660cdb2f980ca619d4b979b9fe342.tar.bz2 libgav1-19564cb4f77660cdb2f980ca619d4b979b9fe342.zip |
New upstream version 0.19.0
Diffstat (limited to 'src/gav1')
-rw-r--r-- | src/gav1/decoder_buffer.h | 10 | ||||
-rw-r--r-- | src/gav1/version.h | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/gav1/decoder_buffer.h b/src/gav1/decoder_buffer.h index 0a5586e..816eca4 100644 --- a/src/gav1/decoder_buffer.h +++ b/src/gav1/decoder_buffer.h @@ -115,20 +115,30 @@ typedef enum Libgav1ColorRange { kLibgav1ColorRangeFull // YUV/RGB [0..255] } Libgav1ColorRange; +// Section 6.7.3. typedef struct Libgav1ObuMetadataHdrCll { // NOLINT uint16_t max_cll; // Maximum content light level. uint16_t max_fall; // Maximum frame-average light level. } Libgav1ObuMetadataHdrCll; +// Section 6.7.4. typedef struct Libgav1ObuMetadataHdrMdcv { // NOLINT + // 0.16 fixed-point X/Y chromaticity coordinate as defined by CIE 1931 in + // R/G/B order. uint16_t primary_chromaticity_x[3]; uint16_t primary_chromaticity_y[3]; + // 0.16 fixed-point X/Y chromaticity coordinate as defined by CIE 1931. uint16_t white_point_chromaticity_x; uint16_t white_point_chromaticity_y; + // 24.8 fixed-point maximum luminance, represented in candelas per square + // meter. uint32_t luminance_max; + // 18.14 fixed-point minimum luminance, represented in candelas per square + // meter. uint32_t luminance_min; } Libgav1ObuMetadataHdrMdcv; +// Section 6.7.2. typedef struct Libgav1ObuMetadataItutT35 { // NOLINT uint8_t country_code; uint8_t country_code_extension_byte; // Valid if country_code is 0xFF. diff --git a/src/gav1/version.h b/src/gav1/version.h index b386acc..cca2383 100644 --- a/src/gav1/version.h +++ b/src/gav1/version.h @@ -23,7 +23,7 @@ // (https://semver.org). #define LIBGAV1_MAJOR_VERSION 0 -#define LIBGAV1_MINOR_VERSION 18 +#define LIBGAV1_MINOR_VERSION 19 #define LIBGAV1_PATCH_VERSION 0 #define LIBGAV1_VERSION \ |