C Specification
The VkVideoEncodeH264ProfileEXT structure is defined as:
// Provided by VK_EXT_video_encode_h264
typedef struct VkVideoEncodeH264ProfileEXT {
VkStructureType sType;
const void* pNext;
StdVideoH264ProfileIdc stdProfileIdc;
} VkVideoEncodeH264ProfileEXT;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
stdProfileIdcis aStdVideoH264ProfileIdcvalue specifying the H.264 codec profile IDC.
Description
An H.264 encode profile is specified by including a
VkVideoEncodeH264ProfileEXT structure in the pNext chain of the
VkVideoProfileKHR structure when
VkVideoProfileKHR::videoCodecOperation is
VK_VIDEO_CODEC_OPERATION_ENCODE_H264_BIT_EXT.
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.