C Specification
The VkVideoEncodeH264SessionCreateInfoEXT
structure is defined as:
// Provided by VK_EXT_video_encode_h264
typedef struct VkVideoEncodeH264SessionCreateInfoEXT {
VkStructureType sType;
const void* pNext;
VkBool32 useMaxLevelIdc;
StdVideoH264LevelIdc maxLevelIdc;
} VkVideoEncodeH264SessionCreateInfoEXT;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
useMaxLevelIdc
indicates whether the value ofmaxLevelIdc
should be used by the implementation. When it is set toVK_FALSE
, the implementation ignores the value ofmaxLevelIdc
and uses the value of VkVideoEncodeH264CapabilitiesEXT::maxLevelIdc
, as reported by vkGetPhysicalDeviceVideoCapabilitiesKHR for the video profile. -
maxLevelIdc
provides the upper bound on the H.264 level for the video bitstreams produced by the created video session.
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.