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
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
videoCodecOperationis the specific video codec operation defined in VkVideoCodecOperationFlagBitsKHR. -
chromaSubsamplingis the video chroma subsampling information defined in VkVideoChromaSubsamplingFlagBitsKHR. -
lumaBitDepthis the video luma bit depth information defined in VkVideoComponentBitDepthFlagBitsKHR. -
chromaBitDepthis 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.