Structures
VkVideoEncodeH265ProfileInfoKHR
Structure specifying H.265 encode-specific video profile parameters
A video profile supporting H.265 video encode operations is specified by
setting VkVideoProfileInfoKHR::videoCodecOperation
to
VK_VIDEO_CODEC_OPERATION_ENCODE_H265_BIT_KHR
and adding a
VkVideoEncodeH265ProfileInfoKHR
structure to the
VkVideoProfileInfoKHR::pNext
chain.
The VkVideoEncodeH265ProfileInfoKHR
structure is defined as:
typedef struct VkVideoEncodeH265ProfileInfoKHR {
VkStructureType sType;
const void* pNext;
StdVideoH265ProfileIdc stdProfileIdc;
} VkVideoEncodeH265ProfileInfoKHR;
sType
is a VkStructureType value identifying this structure.pNext
isNULL
or a pointer to a structure extending this structure.stdProfileIdc
is aStdVideoH265ProfileIdc
value specifying the H.265 codec profile IDC, as defined in section A.3 of the ITU-T H.265 Specification.
Valid Usage (Implicit)
VUID-VkVideoEncodeH265ProfileInfoKHR-sType-sType
sType
must be VK_STRUCTURE_TYPE_VIDEO_ENCODE_H265_PROFILE_INFO_KHR