VkVideoEncodeQuantizationMapInfoKHR(3)
Name
VkVideoEncodeQuantizationMapInfoKHR - Structure specifying quantization map information to use for video encode operations
C Specification
The VkVideoEncodeQuantizationMapInfoKHR
structure can be included in
the pNext
chain of the VkVideoEncodeInfoKHR structure passed to
the vkCmdEncodeVideoKHR command to specify the quantization map used
by the issued video encode operations.
The VkVideoEncodeQuantizationMapInfoKHR
structure is defined as:
// Provided by VK_KHR_video_encode_quantization_map
typedef struct VkVideoEncodeQuantizationMapInfoKHR {
VkStructureType sType;
const void* pNext;
VkImageView quantizationMap;
VkExtent2D quantizationMapExtent;
} VkVideoEncodeQuantizationMapInfoKHR;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
quantizationMap
specifies the image view to use as the quantization map. -
quantizationMapExtent
specifies the extent of the image subregion ofquantizationMap
to use as the quantization map starting at offset (0,0).
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.