C Specification
A video profile is defined by VkVideoProfileKHR structure as:
// Provided by VK_KHR_video_queue
typedef struct VkVideoProfileKHR {
VkStructureType sType;
void* pNext;
VkVideoCodecOperationFlagBitsKHR videoCodecOperation;
VkVideoChromaSubsamplingFlagsKHR chromaSubsampling;
VkVideoComponentBitDepthFlagsKHR lumaBitDepth;
VkVideoComponentBitDepthFlagsKHR chromaBitDepth;
} VkVideoProfileKHR;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
videoCodecOperation
is the specific video codec operation defined in VkVideoCodecOperationFlagBitsKHR. -
chromaSubsampling
is the video chroma subsampling information defined in VkVideoChromaSubsamplingFlagBitsKHR. -
lumaBitDepth
is the video luma bit depth information defined in VkVideoComponentBitDepthFlagBitsKHR. -
chromaBitDepth
is the video chroma bit depth information defined in VkVideoComponentBitDepthFlagBitsKHR.
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.