C Specification
When calling vkGetPhysicalDeviceVideoCapabilitiesKHR with
pVideoProfile->videoCodecOperation
specified as one of the decode
operation bits, the VkVideoDecodeCapabilitiesKHR structure must be
included in the pNext
chain of the VkVideoCapabilitiesKHR
structure to retrieve capabilities specific to video decoding.
The VkVideoDecodeCapabilitiesKHR
structure is defined as:
// Provided by VK_KHR_video_decode_queue
typedef struct VkVideoDecodeCapabilitiesKHR {
VkStructureType sType;
void* pNext;
VkVideoDecodeCapabilityFlagsKHR flags;
} VkVideoDecodeCapabilitiesKHR;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
flags
is a bitmask of VkVideoDecodeCapabilityFlagBitsKHR describing supported decoding features.
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.