org.gstreamer.lowlevel.GstValueAPI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gstreamer-java Show documentation
Show all versions of gstreamer-java Show documentation
Java binding for the Gstreamer framework
/*
* Copyright (c) 2009 Levente Farkas
* Copyright (c) 2007, 2008 Wayne Meissner
*
* This file is part of gstreamer-java.
*
* This code is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License version 3 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* version 3 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with this work. If not, see .
*/
package org.gstreamer.lowlevel;
import org.gstreamer.lowlevel.GValueAPI.GValue;
/**
* GstStructure functions
*/
public interface GstValueAPI extends com.sun.jna.Library {
GstValueAPI GSTVALUE_API = GstNative.load(GstValueAPI.class);
GType gst_fourcc_get_type();
GType gst_int_range_get_type();
GType gst_double_range_get_type();
GType gst_fraction_range_get_type();
GType gst_value_list_get_type();
GType gst_fraction_get_type();
GType gst_date_get_type();
int gst_value_get_fraction_numerator(GValue value);
int gst_value_get_fraction_denominator(GValue value);
GValue gst_value_get_fraction_range_min(GValue value);
GValue gst_value_get_fraction_range_max(GValue value);
double gst_value_get_double_range_min(GValue value);
double gst_value_get_double_range_max(GValue value);
int gst_value_get_int_range_min(GValue value);
int gst_value_get_int_range_max(GValue value);
}