C Specification
The VkVideoEncodeH265SessionCreateInfoEXT
structure is defined as:
// Provided by VK_EXT_video_encode_h265
typedef struct VkVideoEncodeH265SessionCreateInfoEXT {
VkStructureType sType;
const void* pNext;
VkBool32 useMaxLevelIdc;
StdVideoH265LevelIdc maxLevelIdc;
} VkVideoEncodeH265SessionCreateInfoEXT;
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 VkVideoEncodeH265CapabilitiesEXT::maxLevelIdc
, as reported by vkGetPhysicalDeviceVideoCapabilitiesKHR for the video profile. -
maxLevelIdc
provides the upper bound on the H.265 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.