C Specification
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:
// Provided by VK_KHR_video_encode_h265
typedef struct VkVideoEncodeH265ProfileInfoKHR {
    VkStructureType           sType;
    const void*               pNext;
    StdVideoH265ProfileIdc    stdProfileIdc;
} VkVideoEncodeH265ProfileInfoKHR;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
stdProfileIdcis aStdVideoH265ProfileIdcvalue specifying the H.265 codec profile IDC, as defined in section A.3 of the ITU-T H.265 Specification.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.