C Specification
The decode preset types are defined with the following:
// Provided by VK_KHR_video_queue
typedef enum VkVideoCodingQualityPresetFlagBitsKHR {
VK_VIDEO_CODING_QUALITY_PRESET_NORMAL_BIT_KHR = 0x00000001,
VK_VIDEO_CODING_QUALITY_PRESET_POWER_BIT_KHR = 0x00000002,
VK_VIDEO_CODING_QUALITY_PRESET_QUALITY_BIT_KHR = 0x00000004,
} VkVideoCodingQualityPresetFlagBitsKHR;
Description
-
VK_VIDEO_CODING_QUALITY_PRESET_NORMAL_BIT_KHRdefines normal decode case. -
VK_VIDEO_CODING_QUALITY_PRESET_POWER_BIT_KHRdefines power efficient case. -
VK_VIDEO_CODING_QUALITY_PRESET_QUALITY_BIT_KHRdefines quality focus case.
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.