summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorU. Artie Eoff <ullysses.a.eoff@intel.com>2020-04-02 10:44:06 -0700
committerU. Artie Eoff <ullysses.a.eoff@intel.com>2020-04-13 12:20:52 -0700
commite18a6ab6861fc1e1fa8d78a1160804b3f247da7f (patch)
treefeb4ebc21886ab2ee0ced1e9f4dd906ea8d79f3a
parent0e391fd490050f0b7492f5af38b86ba6cccfadc4 (diff)
downloadlibva-e18a6ab6861fc1e1fa8d78a1160804b3f247da7f.tar.gz
Fix HDR10 MaxCLL and MaxFALL documentation
MaxCLL and MaxFALL should be in units of 1 nit as specified in CEA-861.3, Appendix A. A uint16_t is not large enough to specify the full range of possible MaxCLL/MaxFALL values in units of 0.0001 cd/m^2. So conclude that the documentation was just a copy/paste error. Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com>
-rwxr-xr-xva/va_vpp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/va/va_vpp.h b/va/va_vpp.h
index bdf1f7e..ecb8b2d 100755
--- a/va/va_vpp.h
+++ b/va/va_vpp.h
@@ -805,15 +805,15 @@ typedef struct _VAHdrMetaDataHDR10
*/
uint32_t min_display_mastering_luminance;
/**
- * \brief The maximum content light level.
+ * \brief The maximum content light level (MaxCLL).
*
- * The value is in units of 0.0001 candelas per square metre.
+ * The value is in units of 1 candelas per square metre.
*/
uint16_t max_content_light_level;
/**
- * \brief The maximum picture average light level.
+ * \brief The maximum picture average light level (MaxFALL).
*
- * The value is in units of 0.0001 candelas per square metre.
+ * The value is in units of 1 candelas per square metre.
*/
uint16_t max_pic_average_light_level;
/** Resevered */