All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bytedeco.ffmpeg.avutil.unaligned_16 Maven / Gradle / Ivy

There is a newer version: 7.1-1.5.11
Show newest version
// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE

package org.bytedeco.ffmpeg.avutil;

import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

import static org.bytedeco.javacpp.presets.javacpp.*;

import static org.bytedeco.ffmpeg.global.avutil.*;

@Properties(inherit = org.bytedeco.ffmpeg.presets.avutil.class)
public class unaligned_16 extends Pointer {
    static { Loader.load(); }
    /** Default native constructor. */
    public unaligned_16() { super((Pointer)null); allocate(); }
    /** Native array allocator. Access with {@link Pointer#position(long)}. */
    public unaligned_16(long size) { super((Pointer)null); allocateArray(size); }
    /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
    public unaligned_16(Pointer p) { super(p); }
    private native void allocate();
    private native void allocateArray(long size);
    @Override public unaligned_16 position(long position) {
        return (unaligned_16)super.position(position);
    }
 public native @Cast("uint16_t") short l(); public native unaligned_16 l(short setter); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy