C Specification
The VkVideoEncodeH264SessionCreateInfoKHR structure is defined as:
// Provided by VK_KHR_video_encode_h264
typedef struct VkVideoEncodeH264SessionCreateInfoKHR {
    VkStructureType         sType;
    const void*             pNext;
    VkBool32                useMaxLevelIdc;
    StdVideoH264LevelIdc    maxLevelIdc;
} VkVideoEncodeH264SessionCreateInfoKHR;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
useMaxLevelIdcindicates whether the value ofmaxLevelIdcshould be used by the implementation. When it isVK_FALSE, the implementation ignores the value ofmaxLevelIdcand uses the value of VkVideoEncodeH264CapabilitiesKHR::maxLevelIdc, as reported by vkGetPhysicalDeviceVideoCapabilitiesKHR for the video profile.
- 
maxLevelIdcis aStdVideoH264LevelIdcvalue specifying the upper bound on the H.264 level for the video bitstreams produced by the created video session, where enum constantSTD_VIDEO_H264_LEVEL_IDC_<major>_<minor>identifies H.264 level<major>.<minor>as defined in section A.3 of the ITU-T H.264 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.