C Specification
The video format component bit depth is defined with the following enums:
// Provided by VK_KHR_video_queue
typedef enum VkVideoComponentBitDepthFlagBitsKHR {
VK_VIDEO_COMPONENT_BIT_DEPTH_INVALID_KHR = 0,
VK_VIDEO_COMPONENT_BIT_DEPTH_8_BIT_KHR = 0x00000001,
VK_VIDEO_COMPONENT_BIT_DEPTH_10_BIT_KHR = 0x00000004,
VK_VIDEO_COMPONENT_BIT_DEPTH_12_BIT_KHR = 0x00000010,
} VkVideoComponentBitDepthFlagBitsKHR;
Description
-
VK_VIDEO_COMPONENT_BIT_DEPTH_8_BIT_KHR
- the format component bit depth is 8 bits. -
VK_VIDEO_COMPONENT_BIT_DEPTH_10_BIT_KHR
- the format component bit depth is 10 bits. -
VK_VIDEO_COMPONENT_BIT_DEPTH_12_BIT_KHR
- the format component bit depth is 12 bits.
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.