fix[av1]: parameter is 16 bits

Signed-off-by: Hery Xu <hery.xu@rock-chips.com>
Change-Id: I76bcac5896cee83ebfe6e872b4e161f9841c6d96
This commit is contained in:
Hery Xu 2025-03-19 20:26:42 +08:00
parent a4326e2cbc
commit 6bcfb2c0f7

View file

@ -310,15 +310,15 @@ typedef struct AV1RawTileList {
} AV1RawTileList;
typedef struct AV1RawMetadataHDRCLL {
RK_U8 max_cll;
RK_U8 max_fall;
RK_U16 max_cll;
RK_U16 max_fall;
} AV1RawMetadataHDRCLL;
typedef struct AV1RawMetadataHDRMDCV {
RK_U8 primary_chromaticity_x[3];
RK_U8 primary_chromaticity_y[3];
RK_U8 white_point_chromaticity_x;
RK_U8 white_point_chromaticity_y;
RK_U16 primary_chromaticity_x[3];
RK_U16 primary_chromaticity_y[3];
RK_U16 white_point_chromaticity_x;
RK_U16 white_point_chromaticity_y;
RK_U32 luminance_max;
RK_U32 luminance_min;
} AV1RawMetadataHDRMDCV;