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

org.bytedeco.ffmpeg.avutil.AVTreeNode 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.*;


/**
 * \addtogroup lavu_tree AVTree
 * \ingroup lavu_data
 *
 * Low-complexity tree container
 *
 * Insertion, removal, finding equal, largest which is smaller than and
 * smallest which is larger than, all have O(log n) worst-case complexity.
 * \{
 */


@Opaque @Properties(inherit = org.bytedeco.ffmpeg.presets.avutil.class)
public class AVTreeNode extends Pointer {
    /** Empty constructor. Calls {@code super((Pointer)null)}. */
    public AVTreeNode() { super((Pointer)null); }
    /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
    public AVTreeNode(Pointer p) { super(p); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy