org.lwjgl.vulkan.video.StdVideoDecodeH265PictureInfoFlags 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 StdVideoDecodeH265PictureInfoFlags {
* uint32_t IrapPicFlag : 1;
* uint32_t IdrPicFlag : 1;
* uint32_t IsReference : 1;
* uint32_t short_term_ref_pic_set_sps_flag : 1;
* }
*/
public class StdVideoDecodeH265PictureInfoFlags 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 StdVideoDecodeH265PictureInfoFlags} 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 StdVideoDecodeH265PictureInfoFlags(ByteBuffer container) {
super(memAddress(container), __checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** @return the value of the {@code IrapPicFlag} field. */
@NativeType("uint32_t")
public int IrapPicFlag() { return nIrapPicFlag(address()); }
/** @return the value of the {@code IdrPicFlag} field. */
@NativeType("uint32_t")
public int IdrPicFlag() { return nIdrPicFlag(address()); }
/** @return the value of the {@code IsReference} field. */
@NativeType("uint32_t")
public int IsReference() { return nIsReference(address()); }
/** @return the value of the {@code short_term_ref_pic_set_sps_flag} field. */
@NativeType("uint32_t")
public int short_term_ref_pic_set_sps_flag() { return nshort_term_ref_pic_set_sps_flag(address()); }
/** Sets the specified value to the {@code IrapPicFlag} field. */
public StdVideoDecodeH265PictureInfoFlags IrapPicFlag(@NativeType("uint32_t") int value) { nIrapPicFlag(address(), value); return this; }
/** Sets the specified value to the {@code IdrPicFlag} field. */
public StdVideoDecodeH265PictureInfoFlags IdrPicFlag(@NativeType("uint32_t") int value) { nIdrPicFlag(address(), value); return this; }
/** Sets the specified value to the {@code IsReference} field. */
public StdVideoDecodeH265PictureInfoFlags IsReference(@NativeType("uint32_t") int value) { nIsReference(address(), value); return this; }
/** Sets the specified value to the {@code short_term_ref_pic_set_sps_flag} field. */
public StdVideoDecodeH265PictureInfoFlags short_term_ref_pic_set_sps_flag(@NativeType("uint32_t") int value) { nshort_term_ref_pic_set_sps_flag(address(), value); return this; }
/** Initializes this struct with the specified values. */
public StdVideoDecodeH265PictureInfoFlags set(
int IrapPicFlag,
int IdrPicFlag,
int IsReference,
int short_term_ref_pic_set_sps_flag
) {
IrapPicFlag(IrapPicFlag);
IdrPicFlag(IdrPicFlag);
IsReference(IsReference);
short_term_ref_pic_set_sps_flag(short_term_ref_pic_set_sps_flag);
return this;
}
/**
* Copies the specified struct data to this struct.
*
* @param src the source struct
*
* @return this struct
*/
public StdVideoDecodeH265PictureInfoFlags set(StdVideoDecodeH265PictureInfoFlags src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@code StdVideoDecodeH265PictureInfoFlags} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */
public static StdVideoDecodeH265PictureInfoFlags malloc() {
return wrap(StdVideoDecodeH265PictureInfoFlags.class, nmemAllocChecked(SIZEOF));
}
/** Returns a new {@code StdVideoDecodeH265PictureInfoFlags} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */
public static StdVideoDecodeH265PictureInfoFlags calloc() {
return wrap(StdVideoDecodeH265PictureInfoFlags.class, nmemCallocChecked(1, SIZEOF));
}
/** Returns a new {@code StdVideoDecodeH265PictureInfoFlags} instance allocated with {@link BufferUtils}. */
public static StdVideoDecodeH265PictureInfoFlags create() {
ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF);
return wrap(StdVideoDecodeH265PictureInfoFlags.class, memAddress(container), container);
}
/** Returns a new {@code StdVideoDecodeH265PictureInfoFlags} instance for the specified memory address. */
public static StdVideoDecodeH265PictureInfoFlags create(long address) {
return wrap(StdVideoDecodeH265PictureInfoFlags.class, address);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */
@Nullable
public static StdVideoDecodeH265PictureInfoFlags createSafe(long address) {
return address == NULL ? null : wrap(StdVideoDecodeH265PictureInfoFlags.class, address);
}
/**
* Returns a new {@link StdVideoDecodeH265PictureInfoFlags.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
*
* @param capacity the buffer capacity
*/
public static StdVideoDecodeH265PictureInfoFlags.Buffer malloc(int capacity) {
return wrap(Buffer.class, nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity);
}
/**
* Returns a new {@link StdVideoDecodeH265PictureInfoFlags.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed.
*
* @param capacity the buffer capacity
*/
public static StdVideoDecodeH265PictureInfoFlags.Buffer calloc(int capacity) {
return wrap(Buffer.class, nmemCallocChecked(capacity, SIZEOF), capacity);
}
/**
* Returns a new {@link StdVideoDecodeH265PictureInfoFlags.Buffer} instance allocated with {@link BufferUtils}.
*
* @param capacity the buffer capacity
*/
public static StdVideoDecodeH265PictureInfoFlags.Buffer create(int capacity) {
ByteBuffer container = __create(capacity, SIZEOF);
return wrap(Buffer.class, memAddress(container), capacity, container);
}
/**
* Create a {@link StdVideoDecodeH265PictureInfoFlags.Buffer} instance at the specified memory.
*
* @param address the memory address
* @param capacity the buffer capacity
*/
public static StdVideoDecodeH265PictureInfoFlags.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 StdVideoDecodeH265PictureInfoFlags.Buffer createSafe(long address, int capacity) {
return address == NULL ? null : wrap(Buffer.class, address, capacity);
}
/**
* Returns a new {@code StdVideoDecodeH265PictureInfoFlags} instance allocated on the specified {@link MemoryStack}.
*
* @param stack the stack from which to allocate
*/
public static StdVideoDecodeH265PictureInfoFlags malloc(MemoryStack stack) {
return wrap(StdVideoDecodeH265PictureInfoFlags.class, stack.nmalloc(ALIGNOF, SIZEOF));
}
/**
* Returns a new {@code StdVideoDecodeH265PictureInfoFlags} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero.
*
* @param stack the stack from which to allocate
*/
public static StdVideoDecodeH265PictureInfoFlags calloc(MemoryStack stack) {
return wrap(StdVideoDecodeH265PictureInfoFlags.class, stack.ncalloc(ALIGNOF, 1, SIZEOF));
}
/**
* Returns a new {@link StdVideoDecodeH265PictureInfoFlags.Buffer} instance allocated on the specified {@link MemoryStack}.
*
* @param stack the stack from which to allocate
* @param capacity the buffer capacity
*/
public static StdVideoDecodeH265PictureInfoFlags.Buffer malloc(int capacity, MemoryStack stack) {
return wrap(Buffer.class, stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity);
}
/**
* Returns a new {@link StdVideoDecodeH265PictureInfoFlags.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 StdVideoDecodeH265PictureInfoFlags.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 + StdVideoDecodeH265PictureInfoFlags.BITFIELD0); }
/** Unsafe version of {@link #IrapPicFlag}. */
public static int nIrapPicFlag(long struct) { return nbitfield0(struct) & 0x00_00_00_01; }
/** Unsafe version of {@link #IdrPicFlag}. */
public static int nIdrPicFlag(long struct) { return (nbitfield0(struct) & 0x00_00_00_02) >>> 1; }
/** Unsafe version of {@link #IsReference}. */
public static int nIsReference(long struct) { return (nbitfield0(struct) & 0x00_00_00_04) >>> 2; }
/** Unsafe version of {@link #short_term_ref_pic_set_sps_flag}. */
public static int nshort_term_ref_pic_set_sps_flag(long struct) { return (nbitfield0(struct) & 0x00_00_00_08) >>> 3; }
public static void nbitfield0(long struct, int value) { UNSAFE.putInt(null, struct + StdVideoDecodeH265PictureInfoFlags.BITFIELD0, value); }
/** Unsafe version of {@link #IrapPicFlag(int) IrapPicFlag}. */
public static void nIrapPicFlag(long struct, int value) { nbitfield0(struct, (nbitfield0(struct) & 0xFF_FF_FF_FE) | (value & 0x00_00_00_01)); }
/** Unsafe version of {@link #IdrPicFlag(int) IdrPicFlag}. */
public static void nIdrPicFlag(long struct, int value) { nbitfield0(struct, ((value << 1) & 0x00_00_00_02) | (nbitfield0(struct) & 0xFF_FF_FF_FD)); }
/** Unsafe version of {@link #IsReference(int) IsReference}. */
public static void nIsReference(long struct, int value) { nbitfield0(struct, ((value << 2) & 0x00_00_00_04) | (nbitfield0(struct) & 0xFF_FF_FF_FB)); }
/** Unsafe version of {@link #short_term_ref_pic_set_sps_flag(int) short_term_ref_pic_set_sps_flag}. */
public static void nshort_term_ref_pic_set_sps_flag(long struct, int value) { nbitfield0(struct, ((value << 3) & 0x00_00_00_08) | (nbitfield0(struct) & 0xFF_FF_FF_F7)); }
// -----------------------------------
/** An array of {@link StdVideoDecodeH265PictureInfoFlags} structs. */
public static class Buffer extends StructBuffer implements NativeResource {
private static final StdVideoDecodeH265PictureInfoFlags ELEMENT_FACTORY = StdVideoDecodeH265PictureInfoFlags.create(-1L);
/**
* Creates a new {@code StdVideoDecodeH265PictureInfoFlags.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 StdVideoDecodeH265PictureInfoFlags#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 StdVideoDecodeH265PictureInfoFlags getElementFactory() {
return ELEMENT_FACTORY;
}
/** @return the value of the {@code IrapPicFlag} field. */
@NativeType("uint32_t")
public int IrapPicFlag() { return StdVideoDecodeH265PictureInfoFlags.nIrapPicFlag(address()); }
/** @return the value of the {@code IdrPicFlag} field. */
@NativeType("uint32_t")
public int IdrPicFlag() { return StdVideoDecodeH265PictureInfoFlags.nIdrPicFlag(address()); }
/** @return the value of the {@code IsReference} field. */
@NativeType("uint32_t")
public int IsReference() { return StdVideoDecodeH265PictureInfoFlags.nIsReference(address()); }
/** @return the value of the {@code short_term_ref_pic_set_sps_flag} field. */
@NativeType("uint32_t")
public int short_term_ref_pic_set_sps_flag() { return StdVideoDecodeH265PictureInfoFlags.nshort_term_ref_pic_set_sps_flag(address()); }
/** Sets the specified value to the {@code IrapPicFlag} field. */
public StdVideoDecodeH265PictureInfoFlags.Buffer IrapPicFlag(@NativeType("uint32_t") int value) { StdVideoDecodeH265PictureInfoFlags.nIrapPicFlag(address(), value); return this; }
/** Sets the specified value to the {@code IdrPicFlag} field. */
public StdVideoDecodeH265PictureInfoFlags.Buffer IdrPicFlag(@NativeType("uint32_t") int value) { StdVideoDecodeH265PictureInfoFlags.nIdrPicFlag(address(), value); return this; }
/** Sets the specified value to the {@code IsReference} field. */
public StdVideoDecodeH265PictureInfoFlags.Buffer IsReference(@NativeType("uint32_t") int value) { StdVideoDecodeH265PictureInfoFlags.nIsReference(address(), value); return this; }
/** Sets the specified value to the {@code short_term_ref_pic_set_sps_flag} field. */
public StdVideoDecodeH265PictureInfoFlags.Buffer short_term_ref_pic_set_sps_flag(@NativeType("uint32_t") int value) { StdVideoDecodeH265PictureInfoFlags.nshort_term_ref_pic_set_sps_flag(address(), value); return this; }
}
}