mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-12-26 11:17:44 +01:00
fix[av1]: parameter is 16 bits
Signed-off-by: Hery Xu <hery.xu@rock-chips.com> Change-Id: I76bcac5896cee83ebfe6e872b4e161f9841c6d96
This commit is contained in:
parent
a4326e2cbc
commit
6bcfb2c0f7
1 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue