About @param [out] *capabilities OR-ed value of supported HDR standards.

How do I know what kind of bits to fill in this parameter ?

I can't find information about the meaning of each bit in capabilities.



@param [out] *capabilities OR-ed value of supported HDR standardsparam [out] *capabilities OR-ed value of supported HDR standards

  • No labels

1 Comment

  1. It is defined in dsTypes.h

    /**
     * This enumeration defines all of the standard type of HDR Standards.
     * Each bit of uint32_t represent a standard. 
     * If a device supports multiple standards, the capability is the bitwise OR
    * of the standards.
     */
    typedef enum _dsHDRStandard_t {
     dsHDRSTANDARD_NONE = 0x0,
     dsHDRSTANDARD_HDR10 = 0x01
     dsHDRSTANDARD_HLG = 0x02,
     dsHDRSTANDARD_DolbyVersion = 0x04,
    } dsHDRStandard_t