org.lwjgl.vulkan.video.StdVideoEncodeH264SliceHeaderFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-vulkan Show documentation
Show all versions of lwjgl-vulkan Show documentation
A new generation graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs used in a wide variety of devices from PCs and consoles to mobile phones and embedded platforms.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.vulkan.video;
import javax.annotation.*;
import java.nio.*;
import org.lwjgl.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;
/**
* Layout
*
*
* struct StdVideoEncodeH264SliceHeaderFlags {
* uint32_t idr_flag : 1;
* uint32_t is_reference_flag : 1;
* uint32_t num_ref_idx_active_override_flag : 1;
* uint32_t no_output_of_prior_pics_flag : 1;
* uint32_t long_term_reference_flag : 1;
* uint32_t adaptive_ref_pic_marking_mode_flag : 1;
* uint32_t no_prior_references_available_flag : 1;
* }
*/
public class StdVideoEncodeH264SliceHeaderFlags extends Struct implements NativeResource {
/** The struct size in bytes. */
public static final int SIZEOF;
/** The struct alignment in bytes. */
public static final int ALIGNOF;
/** The struct member offsets. */
public static final int
BITFIELD0;
static {
Layout layout = __struct(
__member(4)
);
SIZEOF = layout.getSize();
ALIGNOF = layout.getAlignment();
BITFIELD0 = layout.offsetof(0);
}
/**
* Creates a {@code StdVideoEncodeH264SliceHeaderFlags} instance at the current position of the specified {@link ByteBuffer} container. Changes to the buffer's content will be
* visible to the struct instance and vice versa.
*
* The created instance holds a strong reference to the container object.
*/
public StdVideoEncodeH264SliceHeaderFlags(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code idr_flag} field. */
@NativeType("uint32_t")
public boolean idr_flag() { return nidr_flag(address()) != 0; }
/** @return the value of the {@code is_reference_flag} field. */
@NativeType("uint32_t")
public boolean is_reference_flag() { return nis_reference_flag(address()) != 0; }
/** @return the value of the {@code num_ref_idx_active_override_flag} field. */
@NativeType("uint32_t")
public boolean num_ref_idx_active_override_flag() { return nnum_ref_idx_active_override_flag(address()) != 0; }
/** @return the value of the {@code no_output_of_prior_pics_flag} field. */
@NativeType("uint32_t")
public boolean no_output_of_prior_pics_flag() { return nno_output_of_prior_pics_flag(address()) != 0; }
/** @return the value of the {@code long_term_reference_flag} field. */
@NativeType("uint32_t")
public boolean long_term_reference_flag() { return nlong_term_reference_flag(address()) != 0; }
/** @return the value of the {@code adaptive_ref_pic_marking_mode_flag} field. */
@NativeType("uint32_t")
public boolean adaptive_ref_pic_marking_mode_flag() { return nadaptive_ref_pic_marking_mode_flag(address()) != 0; }
/** @return the value of the {@code no_prior_references_available_flag} field. */
@NativeType("uint32_t")
public boolean no_prior_references_available_flag() { return nno_prior_references_available_flag(address()) != 0; }
/** Sets the specified value to the {@code idr_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags idr_flag(@NativeType("uint32_t") boolean value) { nidr_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code is_reference_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags is_reference_flag(@NativeType("uint32_t") boolean value) { nis_reference_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code num_ref_idx_active_override_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags num_ref_idx_active_override_flag(@NativeType("uint32_t") boolean value) { nnum_ref_idx_active_override_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code no_output_of_prior_pics_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags no_output_of_prior_pics_flag(@NativeType("uint32_t") boolean value) { nno_output_of_prior_pics_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code long_term_reference_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags long_term_reference_flag(@NativeType("uint32_t") boolean value) { nlong_term_reference_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code adaptive_ref_pic_marking_mode_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags adaptive_ref_pic_marking_mode_flag(@NativeType("uint32_t") boolean value) { nadaptive_ref_pic_marking_mode_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code no_prior_references_available_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags no_prior_references_available_flag(@NativeType("uint32_t") boolean value) { nno_prior_references_available_flag(address(), value ? 1 : 0); return this; }
/** Initializes this struct with the specified values. */
public StdVideoEncodeH264SliceHeaderFlags set(
boolean idr_flag,
boolean is_reference_flag,
boolean num_ref_idx_active_override_flag,
boolean no_output_of_prior_pics_flag,
boolean long_term_reference_flag,
boolean adaptive_ref_pic_marking_mode_flag,
boolean no_prior_references_available_flag
) {
idr_flag(idr_flag);
is_reference_flag(is_reference_flag);
num_ref_idx_active_override_flag(num_ref_idx_active_override_flag);
no_output_of_prior_pics_flag(no_output_of_prior_pics_flag);
long_term_reference_flag(long_term_reference_flag);
adaptive_ref_pic_marking_mode_flag(adaptive_ref_pic_marking_mode_flag);
no_prior_references_available_flag(no_prior_references_available_flag);
return this;
}
/**
* Copies the specified struct data to this struct.
*
* @param src the source struct
*
* @return this struct
*/
public StdVideoEncodeH264SliceHeaderFlags set(StdVideoEncodeH264SliceHeaderFlags src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code StdVideoEncodeH264SliceHeaderFlags} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */
public static StdVideoEncodeH264SliceHeaderFlags malloc() {
return wrap(StdVideoEncodeH264SliceHeaderFlags.class, nmemAllocChecked(SIZEOF));
}
/** Returns a new {@code StdVideoEncodeH264SliceHeaderFlags} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */
public static StdVideoEncodeH264SliceHeaderFlags calloc() {
return wrap(StdVideoEncodeH264SliceHeaderFlags.class, nmemCallocChecked(1, SIZEOF));
}
/** Returns a new {@code StdVideoEncodeH264SliceHeaderFlags} instance allocated with {@link BufferUtils}. */
public static StdVideoEncodeH264SliceHeaderFlags create() {
ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF);
return wrap(StdVideoEncodeH264SliceHeaderFlags.class, memAddress(container), container);
}
/** Returns a new {@code StdVideoEncodeH264SliceHeaderFlags} instance for the specified memory address. */
public static StdVideoEncodeH264SliceHeaderFlags create(long address) {
return wrap(StdVideoEncodeH264SliceHeaderFlags.class, address);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */
@Nullable
public static StdVideoEncodeH264SliceHeaderFlags createSafe(long address) {
return address == NULL ? null : wrap(StdVideoEncodeH264SliceHeaderFlags.class, address);
}
/**
* Returns a new {@link StdVideoEncodeH264SliceHeaderFlags.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
*
* @param capacity the buffer capacity
*/
public static StdVideoEncodeH264SliceHeaderFlags.Buffer malloc(int capacity) {
return wrap(Buffer.class, nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity);
}
/**
* Returns a new {@link StdVideoEncodeH264SliceHeaderFlags.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed.
*
* @param capacity the buffer capacity
*/
public static StdVideoEncodeH264SliceHeaderFlags.Buffer calloc(int capacity) {
return wrap(Buffer.class, nmemCallocChecked(capacity, SIZEOF), capacity);
}
/**
* Returns a new {@link StdVideoEncodeH264SliceHeaderFlags.Buffer} instance allocated with {@link BufferUtils}.
*
* @param capacity the buffer capacity
*/
public static StdVideoEncodeH264SliceHeaderFlags.Buffer create(int capacity) {
ByteBuffer container = __create(capacity, SIZEOF);
return wrap(Buffer.class, memAddress(container), capacity, container);
}
/**
* Create a {@link StdVideoEncodeH264SliceHeaderFlags.Buffer} instance at the specified memory.
*
* @param address the memory address
* @param capacity the buffer capacity
*/
public static StdVideoEncodeH264SliceHeaderFlags.Buffer create(long address, int capacity) {
return wrap(Buffer.class, address, capacity);
}
/** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */
@Nullable
public static StdVideoEncodeH264SliceHeaderFlags.Buffer createSafe(long address, int capacity) {
return address == NULL ? null : wrap(Buffer.class, address, capacity);
}
/**
* Returns a new {@code StdVideoEncodeH264SliceHeaderFlags} instance allocated on the specified {@link MemoryStack}.
*
* @param stack the stack from which to allocate
*/
public static StdVideoEncodeH264SliceHeaderFlags malloc(MemoryStack stack) {
return wrap(StdVideoEncodeH264SliceHeaderFlags.class, stack.nmalloc(ALIGNOF, SIZEOF));
}
/**
* Returns a new {@code StdVideoEncodeH264SliceHeaderFlags} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero.
*
* @param stack the stack from which to allocate
*/
public static StdVideoEncodeH264SliceHeaderFlags calloc(MemoryStack stack) {
return wrap(StdVideoEncodeH264SliceHeaderFlags.class, stack.ncalloc(ALIGNOF, 1, SIZEOF));
}
/**
* Returns a new {@link StdVideoEncodeH264SliceHeaderFlags.Buffer} instance allocated on the specified {@link MemoryStack}.
*
* @param stack the stack from which to allocate
* @param capacity the buffer capacity
*/
public static StdVideoEncodeH264SliceHeaderFlags.Buffer malloc(int capacity, MemoryStack stack) {
return wrap(Buffer.class, stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity);
}
/**
* Returns a new {@link StdVideoEncodeH264SliceHeaderFlags.Buffer} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero.
*
* @param stack the stack from which to allocate
* @param capacity the buffer capacity
*/
public static StdVideoEncodeH264SliceHeaderFlags.Buffer calloc(int capacity, MemoryStack stack) {
return wrap(Buffer.class, stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
public static int nbitfield0(long struct) { return UNSAFE.getInt(null, struct + StdVideoEncodeH264SliceHeaderFlags.BITFIELD0); }
/** Unsafe version of {@link #idr_flag}. */
public static int nidr_flag(long struct) { return nbitfield0(struct) & 0x00_00_00_01; }
/** Unsafe version of {@link #is_reference_flag}. */
public static int nis_reference_flag(long struct) { return (nbitfield0(struct) & 0x00_00_00_02) >>> 1; }
/** Unsafe version of {@link #num_ref_idx_active_override_flag}. */
public static int nnum_ref_idx_active_override_flag(long struct) { return (nbitfield0(struct) & 0x00_00_00_04) >>> 2; }
/** Unsafe version of {@link #no_output_of_prior_pics_flag}. */
public static int nno_output_of_prior_pics_flag(long struct) { return (nbitfield0(struct) & 0x00_00_00_08) >>> 3; }
/** Unsafe version of {@link #long_term_reference_flag}. */
public static int nlong_term_reference_flag(long struct) { return (nbitfield0(struct) & 0x00_00_00_10) >>> 4; }
/** Unsafe version of {@link #adaptive_ref_pic_marking_mode_flag}. */
public static int nadaptive_ref_pic_marking_mode_flag(long struct) { return (nbitfield0(struct) & 0x00_00_00_20) >>> 5; }
/** Unsafe version of {@link #no_prior_references_available_flag}. */
public static int nno_prior_references_available_flag(long struct) { return (nbitfield0(struct) & 0x00_00_00_40) >>> 6; }
public static void nbitfield0(long struct, int value) { UNSAFE.putInt(null, struct + StdVideoEncodeH264SliceHeaderFlags.BITFIELD0, value); }
/** Unsafe version of {@link #idr_flag(boolean) idr_flag}. */
public static void nidr_flag(long struct, int value) { nbitfield0(struct, (nbitfield0(struct) & 0xFF_FF_FF_FE) | (value & 0x00_00_00_01)); }
/** Unsafe version of {@link #is_reference_flag(boolean) is_reference_flag}. */
public static void nis_reference_flag(long struct, int value) { nbitfield0(struct, ((value << 1) & 0x00_00_00_02) | (nbitfield0(struct) & 0xFF_FF_FF_FD)); }
/** Unsafe version of {@link #num_ref_idx_active_override_flag(boolean) num_ref_idx_active_override_flag}. */
public static void nnum_ref_idx_active_override_flag(long struct, int value) { nbitfield0(struct, ((value << 2) & 0x00_00_00_04) | (nbitfield0(struct) & 0xFF_FF_FF_FB)); }
/** Unsafe version of {@link #no_output_of_prior_pics_flag(boolean) no_output_of_prior_pics_flag}. */
public static void nno_output_of_prior_pics_flag(long struct, int value) { nbitfield0(struct, ((value << 3) & 0x00_00_00_08) | (nbitfield0(struct) & 0xFF_FF_FF_F7)); }
/** Unsafe version of {@link #long_term_reference_flag(boolean) long_term_reference_flag}. */
public static void nlong_term_reference_flag(long struct, int value) { nbitfield0(struct, ((value << 4) & 0x00_00_00_10) | (nbitfield0(struct) & 0xFF_FF_FF_EF)); }
/** Unsafe version of {@link #adaptive_ref_pic_marking_mode_flag(boolean) adaptive_ref_pic_marking_mode_flag}. */
public static void nadaptive_ref_pic_marking_mode_flag(long struct, int value) { nbitfield0(struct, ((value << 5) & 0x00_00_00_20) | (nbitfield0(struct) & 0xFF_FF_FF_DF)); }
/** Unsafe version of {@link #no_prior_references_available_flag(boolean) no_prior_references_available_flag}. */
public static void nno_prior_references_available_flag(long struct, int value) { nbitfield0(struct, ((value << 6) & 0x00_00_00_40) | (nbitfield0(struct) & 0xFF_FF_FF_BF)); }
// -----------------------------------
/** An array of {@link StdVideoEncodeH264SliceHeaderFlags} structs. */
public static class Buffer extends StructBuffer implements NativeResource {
private static final StdVideoEncodeH264SliceHeaderFlags ELEMENT_FACTORY = StdVideoEncodeH264SliceHeaderFlags.create(-1L);
/**
* Creates a new {@code StdVideoEncodeH264SliceHeaderFlags.Buffer} instance backed by the specified container.
*
* Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values
* will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided
* by {@link StdVideoEncodeH264SliceHeaderFlags#SIZEOF}, and its mark will be undefined.
*
* The created buffer instance holds a strong reference to the container object.
*/
public Buffer(ByteBuffer container) {
super(container, container.remaining() / SIZEOF);
}
public Buffer(long address, int cap) {
super(address, null, -1, 0, cap, cap);
}
Buffer(long address, @Nullable ByteBuffer container, int mark, int pos, int lim, int cap) {
super(address, container, mark, pos, lim, cap);
}
@Override
protected Buffer self() {
return this;
}
@Override
protected StdVideoEncodeH264SliceHeaderFlags getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return the value of the {@code idr_flag} field. */
@NativeType("uint32_t")
public boolean idr_flag() { return StdVideoEncodeH264SliceHeaderFlags.nidr_flag(address()) != 0; }
/** @return the value of the {@code is_reference_flag} field. */
@NativeType("uint32_t")
public boolean is_reference_flag() { return StdVideoEncodeH264SliceHeaderFlags.nis_reference_flag(address()) != 0; }
/** @return the value of the {@code num_ref_idx_active_override_flag} field. */
@NativeType("uint32_t")
public boolean num_ref_idx_active_override_flag() { return StdVideoEncodeH264SliceHeaderFlags.nnum_ref_idx_active_override_flag(address()) != 0; }
/** @return the value of the {@code no_output_of_prior_pics_flag} field. */
@NativeType("uint32_t")
public boolean no_output_of_prior_pics_flag() { return StdVideoEncodeH264SliceHeaderFlags.nno_output_of_prior_pics_flag(address()) != 0; }
/** @return the value of the {@code long_term_reference_flag} field. */
@NativeType("uint32_t")
public boolean long_term_reference_flag() { return StdVideoEncodeH264SliceHeaderFlags.nlong_term_reference_flag(address()) != 0; }
/** @return the value of the {@code adaptive_ref_pic_marking_mode_flag} field. */
@NativeType("uint32_t")
public boolean adaptive_ref_pic_marking_mode_flag() { return StdVideoEncodeH264SliceHeaderFlags.nadaptive_ref_pic_marking_mode_flag(address()) != 0; }
/** @return the value of the {@code no_prior_references_available_flag} field. */
@NativeType("uint32_t")
public boolean no_prior_references_available_flag() { return StdVideoEncodeH264SliceHeaderFlags.nno_prior_references_available_flag(address()) != 0; }
/** Sets the specified value to the {@code idr_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags.Buffer idr_flag(@NativeType("uint32_t") boolean value) { StdVideoEncodeH264SliceHeaderFlags.nidr_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code is_reference_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags.Buffer is_reference_flag(@NativeType("uint32_t") boolean value) { StdVideoEncodeH264SliceHeaderFlags.nis_reference_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code num_ref_idx_active_override_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags.Buffer num_ref_idx_active_override_flag(@NativeType("uint32_t") boolean value) { StdVideoEncodeH264SliceHeaderFlags.nnum_ref_idx_active_override_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code no_output_of_prior_pics_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags.Buffer no_output_of_prior_pics_flag(@NativeType("uint32_t") boolean value) { StdVideoEncodeH264SliceHeaderFlags.nno_output_of_prior_pics_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code long_term_reference_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags.Buffer long_term_reference_flag(@NativeType("uint32_t") boolean value) { StdVideoEncodeH264SliceHeaderFlags.nlong_term_reference_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code adaptive_ref_pic_marking_mode_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags.Buffer adaptive_ref_pic_marking_mode_flag(@NativeType("uint32_t") boolean value) { StdVideoEncodeH264SliceHeaderFlags.nadaptive_ref_pic_marking_mode_flag(address(), value ? 1 : 0); return this; }
/** Sets the specified value to the {@code no_prior_references_available_flag} field. */
public StdVideoEncodeH264SliceHeaderFlags.Buffer no_prior_references_available_flag(@NativeType("uint32_t") boolean value) { StdVideoEncodeH264SliceHeaderFlags.nno_prior_references_available_flag(address(), value ? 1 : 0); return this; }
}
}