VkVideoEncodeH265SessionParametersFeedbackInfoKHR(3)
Name
VkVideoEncodeH265SessionParametersFeedbackInfoKHR - Structure providing feedback about the requested H.265 video session parameters
C Specification
The VkVideoEncodeH265SessionParametersFeedbackInfoKHR structure is
defined as:
// Provided by VK_KHR_video_encode_h265
typedef struct VkVideoEncodeH265SessionParametersFeedbackInfoKHR {
VkStructureType sType;
void* pNext;
VkBool32 hasStdVPSOverrides;
VkBool32 hasStdSPSOverrides;
VkBool32 hasStdPPSOverrides;
} VkVideoEncodeH265SessionParametersFeedbackInfoKHR;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
hasStdVPSOverridesindicates whether any of the parameters of the requested H.265 video parameter set, if one was requested via VkVideoEncodeH265SessionParametersGetInfoKHR::writeStdVPS, were overridden by the implementation. -
hasStdSPSOverridesindicates whether any of the parameters of the requested H.265 sequence parameter set, if one was requested via VkVideoEncodeH265SessionParametersGetInfoKHR::writeStdSPS, were overridden by the implementation. -
hasStdPPSOverridesindicates whether any of the parameters of the requested H.265 picture parameter set, if one was requested via VkVideoEncodeH265SessionParametersGetInfoKHR::writeStdPPS, were overridden by the implementation.
See Also
VK_KHR_video_encode_h265, VkBool32, VkStructureType
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.