Class VkVideoEncodeH265SessionParametersAddInfoKHR

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkVideoEncodeH265SessionParametersAddInfoKHR>
org.lwjgl.vulkan.VkVideoEncodeH265SessionParametersAddInfoKHR
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkVideoEncodeH265SessionParametersAddInfoKHR extends org.lwjgl.system.Struct<VkVideoEncodeH265SessionParametersAddInfoKHR> implements org.lwjgl.system.NativeResource
Structure specifies H.265 encoder parameter set information.
Description

This structure can be specified in the following places:

Valid Usage (Implicit)
  • sType must be STRUCTURE_TYPE_VIDEO_ENCODE_H265_SESSION_PARAMETERS_ADD_INFO_KHR
  • If stdVPSCount is not 0, and pStdVPSs is not NULL, pStdVPSs must be a valid pointer to an array of stdVPSCount StdVideoH265VideoParameterSet values
  • If stdSPSCount is not 0, and pStdSPSs is not NULL, pStdSPSs must be a valid pointer to an array of stdSPSCount StdVideoH265SequenceParameterSet values
  • If stdPPSCount is not 0, and pStdPPSs is not NULL, pStdPPSs must be a valid pointer to an array of stdPPSCount StdVideoH265PictureParameterSet values
Valid Usage
  • The vps_video_parameter_set_id member of each StdVideoH265VideoParameterSet structure specified in the elements of pStdVPSs must be unique within pStdVPSs
  • The pair constructed from the sps_video_parameter_set_id and sps_seq_parameter_set_id members of each StdVideoH265SequenceParameterSet structure specified in the elements of pStdSPSs must be unique within pStdSPSs
  • The triplet constructed from the sps_video_parameter_set_id, pps_seq_parameter_set_id, and pps_pic_parameter_set_id members of each StdVideoH265PictureParameterSet structure specified in the elements of pStdPPSs must be unique within pStdPPSs
See Also

VkVideoEncodeH265SessionParametersCreateInfoKHR

Layout


 struct VkVideoEncodeH265SessionParametersAddInfoKHR {
     VkStructureType sType();
     void const * pNext();
     uint32_t stdVPSCount();
     StdVideoH265VideoParameterSet const * pStdVPSs();
     uint32_t stdSPSCount();
     StdVideoH265SequenceParameterSet const * pStdSPSs();
     uint32_t stdPPSCount();
     StdVideoH265PictureParameterSet const * pStdPPSs();
 }