diff --git a/CHANGELOG.md b/CHANGELOG.md index 8043d8e2f7..a267921481 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,7 @@ The changes are relative to the previous release, unless the baseline is specifi * Add avifdec --icc flag to override the output color profile. * Add experimental API for reading and writing 16-bit AVIF files behind the compilation flag AVIF_ENABLE_EXPERIMENTAL_SAMPLE_TRANSFORM. +* Add AVIF_CHROMA_SAMPLE_POSITION_RESERVED to avifChromaSamplePosition enum. ### Changed since 1.0.0 * Update aom.cmd: v3.9.0 diff --git a/include/avif/avif.h b/include/avif/avif.h index 463bfa0e7e..8723bcb94a 100644 --- a/include/avif/avif.h +++ b/include/avif/avif.h @@ -297,7 +297,8 @@ typedef enum avifChromaSamplePosition { AVIF_CHROMA_SAMPLE_POSITION_UNKNOWN = 0, AVIF_CHROMA_SAMPLE_POSITION_VERTICAL = 1, - AVIF_CHROMA_SAMPLE_POSITION_COLOCATED = 2 + AVIF_CHROMA_SAMPLE_POSITION_COLOCATED = 2, + AVIF_CHROMA_SAMPLE_POSITION_RESERVED = 3 } avifChromaSamplePosition; // ---------------------------------------------------------------------------