2003-11-03 09:10:07 +00:00
|
|
|
/* GStreamer
|
2004-03-12 19:35:40 +00:00
|
|
|
* Copyright (C) 2003 David A. Schleef <ds@schleef.org>
|
2003-11-03 09:10:07 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_STRUCTURE_H__
|
|
|
|
#define __GST_STRUCTURE_H__
|
|
|
|
|
|
|
|
#include <gst/gstconfig.h>
|
2004-03-15 23:11:36 +00:00
|
|
|
#include <gst/gsttypes.h>
|
2003-11-03 09:10:07 +00:00
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-03-12 19:35:40 +00:00
|
|
|
#define GST_TYPE_STRUCTURE (gst_structure_get_type ())
|
|
|
|
#define GST_STRUCTURE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GST_TYPE_STRUCTURE, GstStructure))
|
|
|
|
#define GST_IS_STRUCTURE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GST_TYPE_STRUCTURE))
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2003-11-03 09:10:07 +00:00
|
|
|
typedef struct _GstStructure GstStructure;
|
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
typedef gboolean (*GstStructureForeachFunc) (GQuark field_id,
|
|
|
|
GValue * value,
|
|
|
|
gpointer user_data);
|
2003-11-04 19:00:54 +00:00
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstStructure {
|
2003-12-22 01:39:35 +00:00
|
|
|
GType type;
|
2003-11-03 09:10:07 +00:00
|
|
|
|
|
|
|
GQuark name;
|
|
|
|
|
|
|
|
GArray *fields;
|
2004-03-15 22:42:34 +00:00
|
|
|
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2003-11-03 09:10:07 +00:00
|
|
|
};
|
|
|
|
|
2004-03-15 14:43:35 +00:00
|
|
|
GType gst_structure_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
GstStructure * gst_structure_empty_new (const gchar * name);
|
|
|
|
GstStructure * gst_structure_id_empty_new (GQuark quark);
|
|
|
|
GstStructure * gst_structure_new (const gchar * name,
|
|
|
|
const gchar * firstfield,
|
|
|
|
...);
|
|
|
|
GstStructure * gst_structure_new_valist (const gchar * name,
|
|
|
|
const gchar * firstfield,
|
|
|
|
va_list varargs);
|
|
|
|
GstStructure * gst_structure_copy (const GstStructure *structure);
|
|
|
|
void gst_structure_free (GstStructure *structure);
|
|
|
|
|
|
|
|
G_CONST_RETURN gchar * gst_structure_get_name (const GstStructure *structure);
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
GQuark gst_structure_get_name_id (const GstStructure *structure);
|
2004-03-15 14:43:35 +00:00
|
|
|
void gst_structure_set_name (GstStructure *structure,
|
|
|
|
const gchar *name);
|
|
|
|
|
|
|
|
void gst_structure_id_set_value (GstStructure *structure,
|
|
|
|
GQuark field,
|
|
|
|
const GValue *value);
|
|
|
|
void gst_structure_set_value (GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
const GValue *value);
|
|
|
|
void gst_structure_set (GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
...);
|
|
|
|
void gst_structure_set_valist (GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
va_list varargs);
|
|
|
|
G_CONST_RETURN GValue * gst_structure_id_get_value (const GstStructure *structure,
|
|
|
|
GQuark field);
|
|
|
|
G_CONST_RETURN GValue * gst_structure_get_value (const GstStructure *structure,
|
|
|
|
const gchar *fieldname);
|
|
|
|
void gst_structure_remove_field (GstStructure *structure,
|
|
|
|
const gchar *fieldname);
|
|
|
|
void gst_structure_remove_fields (GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
...);
|
|
|
|
void gst_structure_remove_fields_valist (GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
va_list varargs);
|
|
|
|
void gst_structure_remove_all_fields (GstStructure *structure);
|
|
|
|
|
|
|
|
GType gst_structure_get_field_type (const GstStructure *structure,
|
|
|
|
const gchar *fieldname);
|
|
|
|
gboolean gst_structure_foreach (GstStructure *structure,
|
|
|
|
GstStructureForeachFunc func,
|
|
|
|
gpointer user_data);
|
|
|
|
gint gst_structure_n_fields (const GstStructure *structure);
|
|
|
|
gboolean gst_structure_has_field (const GstStructure *structure,
|
|
|
|
const gchar *fieldname);
|
|
|
|
gboolean gst_structure_has_field_typed (const GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
GType type);
|
2003-11-03 09:10:07 +00:00
|
|
|
|
|
|
|
/* utility functions */
|
2004-03-15 14:43:35 +00:00
|
|
|
gboolean gst_structure_get_boolean (const GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
gboolean *value);
|
|
|
|
gboolean gst_structure_get_int (const GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
gint *value);
|
|
|
|
gboolean gst_structure_get_fourcc (const GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
guint32 *value);
|
|
|
|
gboolean gst_structure_get_double (const GstStructure *structure,
|
|
|
|
const gchar *fieldname,
|
|
|
|
gdouble *value);
|
|
|
|
G_CONST_RETURN gchar * gst_structure_get_string (const GstStructure *structure,
|
|
|
|
const gchar *fieldname);
|
|
|
|
|
|
|
|
gchar * gst_structure_to_string (const GstStructure *structure);
|
|
|
|
GstStructure * gst_structure_from_string (const gchar *string,
|
|
|
|
gchar **end);
|
2003-11-03 09:10:07 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2003-11-03 09:10:07 +00:00
|
|
|
#endif
|
2004-03-15 14:43:35 +00:00
|
|
|
|