Class StdVideoEncodeH265PictureInfoFlags

java.lang.Object
overrungl.struct.GroupType
overrungl.vulkan.video.StdVideoEncodeH265PictureInfoFlags
All Implemented Interfaces:
Addressable

public final class StdVideoEncodeH265PictureInfoFlags extends GroupType

Layout

struct StdVideoEncodeH265PictureInfoFlags {
    uint32_t is_reference : 1;
    uint32_t IrapPicFlag : 1;
    uint32_t used_for_long_term_reference : 1;
    uint32_t discardable_flag : 1;
    uint32_t cross_layer_bla_flag : 1;
    uint32_t pic_output_flag : 1;
    uint32_t no_output_of_prior_pics_flag : 1;
    uint32_t short_term_ref_pic_set_sps_flag : 1;
    uint32_t slice_temporal_mvp_enabled_flag : 1;
    uint32_t reserved : 23;
};
  • Field Details

    • LAYOUT

      public static final GroupLayout LAYOUT
      The struct layout of StdVideoEncodeH265PictureInfoFlags.
  • Constructor Details

    • StdVideoEncodeH265PictureInfoFlags

      public StdVideoEncodeH265PictureInfoFlags(MemorySegment segment, long elementCount)
      Creates StdVideoEncodeH265PictureInfoFlags with the given segment.
      Parameters:
      segment - the memory segment
      elementCount - the element count of this struct buffer
  • Method Details

    • of

      Creates StdVideoEncodeH265PictureInfoFlags with the given segment.
      Parameters:
      segment - the memory segment
      Returns:
      the created instance or null if the segment is NULL
    • ofNative

      public static StdVideoEncodeH265PictureInfoFlags ofNative(MemorySegment segment)

      Creates StdVideoEncodeH265PictureInfoFlags with the given segment.

      Reinterprets the segment if zero-length.

      Parameters:
      segment - the memory segment
      Returns:
      the created instance or null if the segment is NULL
    • ofNative

      public static StdVideoEncodeH265PictureInfoFlags ofNative(MemorySegment segment, long count)

      Creates StdVideoEncodeH265PictureInfoFlags with the given segment.

      Reinterprets the segment if zero-length.

      Parameters:
      segment - the memory segment
      count - the count of the buffer
      Returns:
      the created instance or null if the segment is NULL
    • alloc

      public static StdVideoEncodeH265PictureInfoFlags alloc(SegmentAllocator allocator)
      Allocates a StdVideoEncodeH265PictureInfoFlags with the given segment allocator.
      Parameters:
      allocator - the segment allocator
      Returns:
      the allocated StdVideoEncodeH265PictureInfoFlags
    • alloc

      public static StdVideoEncodeH265PictureInfoFlags alloc(SegmentAllocator allocator, long count)
      Allocates a StdVideoEncodeH265PictureInfoFlags with the given segment allocator and count.
      Parameters:
      allocator - the segment allocator
      count - the count
      Returns:
      the allocated StdVideoEncodeH265PictureInfoFlags
    • copyFrom

      Copies from the given source.
      Parameters:
      src - the source
      Returns:
      this
    • reinterpret

      public StdVideoEncodeH265PictureInfoFlags reinterpret(long count)
      Reinterprets this buffer with the given count.
      Parameters:
      count - the new count
      Returns:
      the reinterpreted buffer
    • asSlice

      public StdVideoEncodeH265PictureInfoFlags asSlice(long index)
      Creates a slice of StdVideoEncodeH265PictureInfoFlags.
      Parameters:
      index - the index of the struct buffer
      Returns:
      the slice of StdVideoEncodeH265PictureInfoFlags
    • asSlice

      public StdVideoEncodeH265PictureInfoFlags asSlice(long index, long count)
      Creates a slice of StdVideoEncodeH265PictureInfoFlags.
      Parameters:
      index - the index of the struct buffer
      count - the count
      Returns:
      the slice of StdVideoEncodeH265PictureInfoFlags
    • at

      Visits StdVideoEncodeH265PictureInfoFlags buffer at the given index.
      Parameters:
      index - the index of this buffer
      func - the function to run with the slice of this buffer
      Returns:
      this