Record Class StdVideoEncodeAV1ExtensionHeader

java.lang.Object
java.lang.Record
club.doki7.vulkan.datatype.StdVideoEncodeAV1ExtensionHeader
All Implemented Interfaces:
IPointer, IStdVideoEncodeAV1ExtensionHeader

@ValueBasedCandidate @UnsafeConstructor public record StdVideoEncodeAV1ExtensionHeader(@NotNull MemorySegment segment) extends Record implements IStdVideoEncodeAV1ExtensionHeader

Represents a pointer to a StdVideoEncodeAV1ExtensionHeader structure in native memory.

Structure

typedef struct StdVideoEncodeAV1ExtensionHeader {
    uint8_t temporal_id;
    uint8_t spatial_id;
} StdVideoEncodeAV1ExtensionHeader;

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$temporal_id

      public static final MemoryLayout.PathElement PATH$temporal_id
    • PATH$spatial_id

      public static final MemoryLayout.PathElement PATH$spatial_id
    • LAYOUT$temporal_id

      public static final ValueLayout.OfByte LAYOUT$temporal_id
    • LAYOUT$spatial_id

      public static final ValueLayout.OfByte LAYOUT$spatial_id
    • SIZE$temporal_id

      public static final long SIZE$temporal_id
    • SIZE$spatial_id

      public static final long SIZE$spatial_id
    • OFFSET$temporal_id

      public static final long OFFSET$temporal_id
    • OFFSET$spatial_id

      public static final long OFFSET$spatial_id
  • Constructor Details

    • StdVideoEncodeAV1ExtensionHeader

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