C Specification
The VkVideoDecodeH265CapabilitiesEXT
structure is defined as:
// Provided by VK_EXT_video_decode_h265
typedef struct VkVideoDecodeH265CapabilitiesEXT {
VkStructureType sType;
void* pNext;
StdVideoH265Level maxLevel;
} VkVideoDecodeH265CapabilitiesEXT;
Members
When using vkGetPhysicalDeviceVideoCapabilitiesKHR to query the
capabilities for the parameter videoCodecOperation
specified as
VK_VIDEO_CODEC_OPERATION_DECODE_H265_BIT_EXT
, a
VkVideoDecodeH265CapabilitiesEXT structure can be chained to
VkVideoCapabilitiesKHR to return this H.265 extension specific
capabilities.
Description
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
maxLevel
is the maximum H.265 level supported by the device.
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.