org.lwjgl.opencl.CLMotionEstimationDescINTEL Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-opencl Show documentation
Show all versions of lwjgl-opencl Show documentation
An open, royalty-free standard for cross-platform, parallel programming of diverse processors found in personal computers, servers, mobile devices and embedded platforms.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.opencl;
import java.nio.*;
import org.lwjgl.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;
/**
* Describes the configuration of the motion estimation algorithm.
*
* Member documentation
*
*
* - {@code mb_block_type} – describes the size of the blocks described by the motion estimator
* - {@code subpixel_mode} – defines the search precision (and hence, the precision of the returned motion vectors)
* - {@code sad_adjust_mode} – specifies distortion measure adjustment used for the motion search SAD comparison
* - {@code search_path_type} –
* specifies the search path and search radius when matching blocks in the neighborhood of each pixel block (optionally offset by the predicted motion
* vector). Currently, all search algorithms match the source block with pixel blocks in the reference area exhaustively within a {@code [Rx, Ry]}
* radius from the current source pixel block location (optionally offset by the predicted motion vector)
*
*
* Layout
*
*
* struct cl_motion_estimation_desc_intel {
* cl_uint mb_block_type;
* cl_uint subpixel_mode;
* cl_uint sad_adjust_mode;
* cl_uint search_path_type;
* }
*/
@NativeType("struct cl_motion_estimation_desc_intel")
public class CLMotionEstimationDescINTEL extends Struct implements NativeResource {
/** The struct size in bytes. */
public static final int SIZEOF;
public static final int ALIGNOF;
/** The struct member offsets. */
public static final int
MB_BLOCK_TYPE,
SUBPIXEL_MODE,
SAD_ADJUST_MODE,
SEARCH_PATH_TYPE;
static {
Layout layout = __struct(
__member(4),
__member(4),
__member(4),
__member(4)
);
SIZEOF = layout.getSize();
ALIGNOF = layout.getAlignment();
MB_BLOCK_TYPE = layout.offsetof(0);
SUBPIXEL_MODE = layout.offsetof(1);
SAD_ADJUST_MODE = layout.offsetof(2);
SEARCH_PATH_TYPE = layout.offsetof(3);
}
CLMotionEstimationDescINTEL(long address, ByteBuffer container) {
super(address, container);
}
/**
* Creates a {@link CLMotionEstimationDescINTEL} 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 CLMotionEstimationDescINTEL(ByteBuffer container) {
this(memAddress(container), checkContainer(container, SIZEOF));
}
@Override
public int sizeof() { return SIZEOF; }
/** Returns the value of the {@code mb_block_type} field. */
@NativeType("cl_uint")
public int mb_block_type() { return nmb_block_type(address()); }
/** Returns the value of the {@code subpixel_mode} field. */
@NativeType("cl_uint")
public int subpixel_mode() { return nsubpixel_mode(address()); }
/** Returns the value of the {@code sad_adjust_mode} field. */
@NativeType("cl_uint")
public int sad_adjust_mode() { return nsad_adjust_mode(address()); }
/** Returns the value of the {@code search_path_type} field. */
@NativeType("cl_uint")
public int search_path_type() { return nsearch_path_type(address()); }
/** Sets the specified value to the {@code mb_block_type} field. */
public CLMotionEstimationDescINTEL mb_block_type(@NativeType("cl_uint") int value) { nmb_block_type(address(), value); return this; }
/** Sets the specified value to the {@code subpixel_mode} field. */
public CLMotionEstimationDescINTEL subpixel_mode(@NativeType("cl_uint") int value) { nsubpixel_mode(address(), value); return this; }
/** Sets the specified value to the {@code sad_adjust_mode} field. */
public CLMotionEstimationDescINTEL sad_adjust_mode(@NativeType("cl_uint") int value) { nsad_adjust_mode(address(), value); return this; }
/** Sets the specified value to the {@code search_path_type} field. */
public CLMotionEstimationDescINTEL search_path_type(@NativeType("cl_uint") int value) { nsearch_path_type(address(), value); return this; }
/** Initializes this struct with the specified values. */
public CLMotionEstimationDescINTEL set(
int mb_block_type,
int subpixel_mode,
int sad_adjust_mode,
int search_path_type
) {
mb_block_type(mb_block_type);
subpixel_mode(subpixel_mode);
sad_adjust_mode(sad_adjust_mode);
search_path_type(search_path_type);
return this;
}
/**
* Copies the specified struct data to this struct.
*
* @param src the source struct
*
* @return this struct
*/
public CLMotionEstimationDescINTEL set(CLMotionEstimationDescINTEL src) {
memCopy(src.address(), address(), SIZEOF);
return this;
}
// -----------------------------------
/** Returns a new {@link CLMotionEstimationDescINTEL} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */
public static CLMotionEstimationDescINTEL malloc() {
return create(nmemAlloc(SIZEOF));
}
/** Returns a new {@link CLMotionEstimationDescINTEL} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */
public static CLMotionEstimationDescINTEL calloc() {
return create(nmemCalloc(1, SIZEOF));
}
/** Returns a new {@link CLMotionEstimationDescINTEL} instance allocated with {@link BufferUtils}. */
public static CLMotionEstimationDescINTEL create() {
return new CLMotionEstimationDescINTEL(BufferUtils.createByteBuffer(SIZEOF));
}
/** Returns a new {@link CLMotionEstimationDescINTEL} instance for the specified memory address or {@code null} if the address is {@code NULL}. */
public static CLMotionEstimationDescINTEL create(long address) {
return address == NULL ? null : new CLMotionEstimationDescINTEL(address, null);
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed.
*
* @param capacity the buffer capacity
*/
public static Buffer malloc(int capacity) {
return create(__malloc(capacity, SIZEOF), capacity);
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed.
*
* @param capacity the buffer capacity
*/
public static Buffer calloc(int capacity) {
return create(nmemCalloc(capacity, SIZEOF), capacity);
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL.Buffer} instance allocated with {@link BufferUtils}.
*
* @param capacity the buffer capacity
*/
public static Buffer create(int capacity) {
return new Buffer(__create(capacity, SIZEOF));
}
/**
* Create a {@link CLMotionEstimationDescINTEL.Buffer} instance at the specified memory.
*
* @param address the memory address
* @param capacity the buffer capacity
*/
public static Buffer create(long address, int capacity) {
return address == NULL ? null : new Buffer(address, null, -1, 0, capacity, capacity);
}
// -----------------------------------
/** Returns a new {@link CLMotionEstimationDescINTEL} instance allocated on the thread-local {@link MemoryStack}. */
public static CLMotionEstimationDescINTEL mallocStack() {
return mallocStack(stackGet());
}
/** Returns a new {@link CLMotionEstimationDescINTEL} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. */
public static CLMotionEstimationDescINTEL callocStack() {
return callocStack(stackGet());
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL} instance allocated on the specified {@link MemoryStack}.
*
* @param stack the stack from which to allocate
*/
public static CLMotionEstimationDescINTEL mallocStack(MemoryStack stack) {
return create(stack.nmalloc(ALIGNOF, SIZEOF));
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero.
*
* @param stack the stack from which to allocate
*/
public static CLMotionEstimationDescINTEL callocStack(MemoryStack stack) {
return create(stack.ncalloc(ALIGNOF, 1, SIZEOF));
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL.Buffer} instance allocated on the thread-local {@link MemoryStack}.
*
* @param capacity the buffer capacity
*/
public static Buffer mallocStack(int capacity) {
return mallocStack(capacity, stackGet());
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL.Buffer} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero.
*
* @param capacity the buffer capacity
*/
public static Buffer callocStack(int capacity) {
return callocStack(capacity, stackGet());
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL.Buffer} instance allocated on the specified {@link MemoryStack}.
*
* @param stack the stack from which to allocate
* @param capacity the buffer capacity
*/
public static Buffer mallocStack(int capacity, MemoryStack stack) {
return create(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity);
}
/**
* Returns a new {@link CLMotionEstimationDescINTEL.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 Buffer callocStack(int capacity, MemoryStack stack) {
return create(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity);
}
// -----------------------------------
/** Unsafe version of {@link #mb_block_type}. */
public static int nmb_block_type(long struct) { return memGetInt(struct + CLMotionEstimationDescINTEL.MB_BLOCK_TYPE); }
/** Unsafe version of {@link #subpixel_mode}. */
public static int nsubpixel_mode(long struct) { return memGetInt(struct + CLMotionEstimationDescINTEL.SUBPIXEL_MODE); }
/** Unsafe version of {@link #sad_adjust_mode}. */
public static int nsad_adjust_mode(long struct) { return memGetInt(struct + CLMotionEstimationDescINTEL.SAD_ADJUST_MODE); }
/** Unsafe version of {@link #search_path_type}. */
public static int nsearch_path_type(long struct) { return memGetInt(struct + CLMotionEstimationDescINTEL.SEARCH_PATH_TYPE); }
/** Unsafe version of {@link #mb_block_type(int) mb_block_type}. */
public static void nmb_block_type(long struct, int value) { memPutInt(struct + CLMotionEstimationDescINTEL.MB_BLOCK_TYPE, value); }
/** Unsafe version of {@link #subpixel_mode(int) subpixel_mode}. */
public static void nsubpixel_mode(long struct, int value) { memPutInt(struct + CLMotionEstimationDescINTEL.SUBPIXEL_MODE, value); }
/** Unsafe version of {@link #sad_adjust_mode(int) sad_adjust_mode}. */
public static void nsad_adjust_mode(long struct, int value) { memPutInt(struct + CLMotionEstimationDescINTEL.SAD_ADJUST_MODE, value); }
/** Unsafe version of {@link #search_path_type(int) search_path_type}. */
public static void nsearch_path_type(long struct, int value) { memPutInt(struct + CLMotionEstimationDescINTEL.SEARCH_PATH_TYPE, value); }
// -----------------------------------
/** An array of {@link CLMotionEstimationDescINTEL} structs. */
public static class Buffer extends StructBuffer implements NativeResource {
/**
* Creates a new {@link CLMotionEstimationDescINTEL.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 CLMotionEstimationDescINTEL#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);
}
Buffer(long address, 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 Buffer newBufferInstance(long address, ByteBuffer container, int mark, int pos, int lim, int cap) {
return new Buffer(address, container, mark, pos, lim, cap);
}
@Override
protected CLMotionEstimationDescINTEL newInstance(long address) {
return new CLMotionEstimationDescINTEL(address, container);
}
@Override
public int sizeof() {
return SIZEOF;
}
/** Returns the value of the {@code mb_block_type} field. */
@NativeType("cl_uint")
public int mb_block_type() { return CLMotionEstimationDescINTEL.nmb_block_type(address()); }
/** Returns the value of the {@code subpixel_mode} field. */
@NativeType("cl_uint")
public int subpixel_mode() { return CLMotionEstimationDescINTEL.nsubpixel_mode(address()); }
/** Returns the value of the {@code sad_adjust_mode} field. */
@NativeType("cl_uint")
public int sad_adjust_mode() { return CLMotionEstimationDescINTEL.nsad_adjust_mode(address()); }
/** Returns the value of the {@code search_path_type} field. */
@NativeType("cl_uint")
public int search_path_type() { return CLMotionEstimationDescINTEL.nsearch_path_type(address()); }
/** Sets the specified value to the {@code mb_block_type} field. */
public CLMotionEstimationDescINTEL.Buffer mb_block_type(@NativeType("cl_uint") int value) { CLMotionEstimationDescINTEL.nmb_block_type(address(), value); return this; }
/** Sets the specified value to the {@code subpixel_mode} field. */
public CLMotionEstimationDescINTEL.Buffer subpixel_mode(@NativeType("cl_uint") int value) { CLMotionEstimationDescINTEL.nsubpixel_mode(address(), value); return this; }
/** Sets the specified value to the {@code sad_adjust_mode} field. */
public CLMotionEstimationDescINTEL.Buffer sad_adjust_mode(@NativeType("cl_uint") int value) { CLMotionEstimationDescINTEL.nsad_adjust_mode(address(), value); return this; }
/** Sets the specified value to the {@code search_path_type} field. */
public CLMotionEstimationDescINTEL.Buffer search_path_type(@NativeType("cl_uint") int value) { CLMotionEstimationDescINTEL.nsearch_path_type(address(), value); return this; }
}
}