Record Class StdVideoDecodeH265PictureInfo

java.lang.Object
java.lang.Record
club.doki7.vulkan.datatype.StdVideoDecodeH265PictureInfo
All Implemented Interfaces:
IPointer, IStdVideoDecodeH265PictureInfo

@ValueBasedCandidate @UnsafeConstructor public record StdVideoDecodeH265PictureInfo(@NotNull MemorySegment segment) extends Record implements IStdVideoDecodeH265PictureInfo

Represents a pointer to a StdVideoDecodeH265PictureInfo structure in native memory.

Structure

typedef struct StdVideoDecodeH265PictureInfo {
    StdVideoDecodeH265PictureInfoFlags flags;
    uint8_t sps_video_parameter_set_id;
    uint8_t pps_seq_parameter_set_id;
    uint8_t pps_pic_parameter_set_id;
    uint8_t NumDeltaPocsOfRefRpsIdx;
    int32_t PicOrderCntVal;
    uint16_t NumBitsForSTRefPicSetInSlice;
    uint16_t reserved;
    uint8_t[STD_VIDEO_DECODE_H265_REF_PIC_SET_LIST_SIZE] RefPicSetStCurrBefore;
    uint8_t[STD_VIDEO_DECODE_H265_REF_PIC_SET_LIST_SIZE] RefPicSetStCurrAfter;
    uint8_t[STD_VIDEO_DECODE_H265_REF_PIC_SET_LIST_SIZE] RefPicSetLtCurr;
} StdVideoDecodeH265PictureInfo;

Contracts

The property segment() should always be not-null (segment != NULL && !segment.equals(MemorySegment.NULL)), and properly aligned to LAYOUT.byteAlignment() bytes. To represent null pointer, you may use a Java null instead. See the documentation of IPointer.segment() for more details.

The constructor of this class is marked as UnsafeConstructor, because it does not perform any runtime check. The constructor can be useful for automatic code generators.

  • Field Details

    • LAYOUT

      public static final StructLayout LAYOUT
    • BYTES

      public static final long BYTES
    • PATH$flags

      public static final MemoryLayout.PathElement PATH$flags
    • PATH$sps_video_parameter_set_id

      public static final MemoryLayout.PathElement PATH$sps_video_parameter_set_id
    • PATH$pps_seq_parameter_set_id

      public static final MemoryLayout.PathElement PATH$pps_seq_parameter_set_id
    • PATH$pps_pic_parameter_set_id

      public static final MemoryLayout.PathElement PATH$pps_pic_parameter_set_id
    • PATH$NumDeltaPocsOfRefRpsIdx

      public static final MemoryLayout.PathElement PATH$NumDeltaPocsOfRefRpsIdx
    • PATH$PicOrderCntVal

      public static final MemoryLayout.PathElement PATH$PicOrderCntVal
    • PATH$NumBitsForSTRefPicSetInSlice

      public static final MemoryLayout.PathElement PATH$NumBitsForSTRefPicSetInSlice
    • PATH$RefPicSetStCurrBefore

      public static final MemoryLayout.PathElement PATH$RefPicSetStCurrBefore
    • PATH$RefPicSetStCurrAfter

      public static final MemoryLayout.PathElement PATH$RefPicSetStCurrAfter
    • PATH$RefPicSetLtCurr

      public static final MemoryLayout.PathElement PATH$RefPicSetLtCurr
    • LAYOUT$flags

      public static final StructLayout LAYOUT$flags
    • LAYOUT$sps_video_parameter_set_id

      public static final ValueLayout.OfByte LAYOUT$sps_video_parameter_set_id
    • LAYOUT$pps_seq_parameter_set_id

      public static final ValueLayout.OfByte LAYOUT$pps_seq_parameter_set_id
    • LAYOUT$pps_pic_parameter_set_id

      public static final ValueLayout.OfByte LAYOUT$pps_pic_parameter_set_id
    • LAYOUT$NumDeltaPocsOfRefRpsIdx

      public static final ValueLayout.OfByte LAYOUT$NumDeltaPocsOfRefRpsIdx
    • LAYOUT$PicOrderCntVal

      public static final ValueLayout.OfInt LAYOUT$PicOrderCntVal
    • LAYOUT$NumBitsForSTRefPicSetInSlice

      public static final ValueLayout.OfShort LAYOUT$NumBitsForSTRefPicSetInSlice
    • LAYOUT$RefPicSetStCurrBefore

      public static final SequenceLayout LAYOUT$RefPicSetStCurrBefore
    • LAYOUT$RefPicSetStCurrAfter

      public static final SequenceLayout LAYOUT$RefPicSetStCurrAfter
    • LAYOUT$RefPicSetLtCurr

      public static final SequenceLayout LAYOUT$RefPicSetLtCurr
    • SIZE$flags

      public static final long SIZE$flags
    • SIZE$sps_video_parameter_set_id

      public static final long SIZE$sps_video_parameter_set_id
    • SIZE$pps_seq_parameter_set_id

      public static final long SIZE$pps_seq_parameter_set_id
    • SIZE$pps_pic_parameter_set_id

      public static final long SIZE$pps_pic_parameter_set_id
    • SIZE$NumDeltaPocsOfRefRpsIdx

      public static final long SIZE$NumDeltaPocsOfRefRpsIdx
    • SIZE$PicOrderCntVal

      public static final long SIZE$PicOrderCntVal
    • SIZE$NumBitsForSTRefPicSetInSlice

      public static final long SIZE$NumBitsForSTRefPicSetInSlice
    • SIZE$RefPicSetStCurrBefore

      public static final long SIZE$RefPicSetStCurrBefore
    • SIZE$RefPicSetStCurrAfter

      public static final long SIZE$RefPicSetStCurrAfter
    • SIZE$RefPicSetLtCurr

      public static final long SIZE$RefPicSetLtCurr
    • OFFSET$flags

      public static final long OFFSET$flags
    • OFFSET$sps_video_parameter_set_id

      public static final long OFFSET$sps_video_parameter_set_id
    • OFFSET$pps_seq_parameter_set_id

      public static final long OFFSET$pps_seq_parameter_set_id
    • OFFSET$pps_pic_parameter_set_id

      public static final long OFFSET$pps_pic_parameter_set_id
    • OFFSET$NumDeltaPocsOfRefRpsIdx

      public static final long OFFSET$NumDeltaPocsOfRefRpsIdx
    • OFFSET$PicOrderCntVal

      public static final long OFFSET$PicOrderCntVal
    • OFFSET$NumBitsForSTRefPicSetInSlice

      public static final long OFFSET$NumBitsForSTRefPicSetInSlice
    • OFFSET$RefPicSetStCurrBefore

      public static final long OFFSET$RefPicSetStCurrBefore
    • OFFSET$RefPicSetStCurrAfter

      public static final long OFFSET$RefPicSetStCurrAfter
    • OFFSET$RefPicSetLtCurr

      public static final long OFFSET$RefPicSetLtCurr
  • Constructor Details

    • StdVideoDecodeH265PictureInfo

      public StdVideoDecodeH265PictureInfo(@NotNull @NotNull MemorySegment segment)
      Creates an instance of a StdVideoDecodeH265PictureInfo record class.
      Parameters:
      segment - the value for the segment record component
  • Method Details