mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
7c0804b15c
Original commit message from CVS: 2005-02-10 Andy Wingo <wingo@pobox.com> * testsuite/caps/value_serialize.c: merge from HEAD. * testsuite/caps/subtract.c: * testsuite/caps/filtercaps.c: * testsuite/caps/enumcaps.c: * testsuite/caps/deserialize.c: * testsuite/caps/caps.c: * testsuite/caps/audioscale.c: Unref caps, not free. * testsuite/caps/caps_strings: Merged from HEAD. * gst/elements/gstidentity.c (gst_identity_proxy_getcaps): Getcaps implementation for identity. * gst/gststructure.h * gst/gststructure.c (gst_caps_structure_fixate_field_nearest_double): (gst_caps_structure_fixate_field_nearest_int): Moved from gstcaps.c because we need the private IS_MUTABLE macro. (IS_MUTABLE): New macro, determines if a structure is mutable or not. (gst_structure_free): Don't allow free while holding a pointer to a parent's refcount. (gst_structure_set_name): Check for writability. (gst_structure_id_set_value): Same. (gst_structure_set_value): Same. (gst_structure_set_valist): Same. (gst_structure_remove_field): Same. (gst_structure_remove_all_fields): Same. (gst_structure_map_in_place): New routine, like _foreach but allows the function to mutate the value (via a non-const prototype). Check for writability. (gst_structure_foreach): Redefine to only take non-mutating functions. * gst/gstcaps.c (IS_WRITABLE): New macro, returns TRUE if the caps are writable. (gst_caps_copy): Add some docs about mutability, etc. (_gst_caps_free): Set the parent refcount pointer on structures to NULL before freeing them. (gst_caps_ref): Document. (gst_caps_make_writable): Doc. (gst_caps_make_writable): Changed to make_writable, get_writable sounds too much like retrieving a property. (gst_caps_copy_1): Removed, not very useful. (gst_caps_ref_by_count): Removed, no need to have something GLib doesn't. (gst_caps_copy_conditional): Ref instead of copying. (gst_static_caps_get): Retain a reference to the returned caps, so that the static caps will remain immutable. (gst_caps_remove_and_get_structure): Set the parent refcount to NULL when removing the structure. (gst_caps_append): Fix to work with structure parent refcounts. Check for writability. (gst_caps_append_structure): Check for writability, work with parent refcounts. (gst_caps_remove_structure): Check for writability. (gst_caps_set_simple): Check for writability. (gst_caps_set_simple_valist): Check for writability. (gst_caps_is_fixed_foreach): Update for non-mutating foreach. (gst_structure_is_equal_foreach): Same. (gst_caps_structure_intersect_field): Same. (gst_caps_structure_subtract_field): Same. Make static. (gst_caps_normalize_foreach): Same. (gst_caps_structure_figure_out_union): Same. (gst_caps_switch_structures): New static function, switches out structures inside a caps, taking care of parent_refcount setting. * gst/gstpad.c (gst_pad_get_allowed_caps): Remove the restriction on only src pads, wim von masterhack claims it was bogus. * testsuite/caps/Makefile.am * testsuite/caps/app_fixate.c: Removed app_fixate test, things are done a bit differently in THREADED.
149 lines
6.9 KiB
C
149 lines
6.9 KiB
C
/* GStreamer
|
|
* Copyright (C) 2003 David A. Schleef <ds@schleef.org>
|
|
*
|
|
* 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>
|
|
#include <gst/gsttypes.h>
|
|
#include <glib-object.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GST_TYPE_STRUCTURE (gst_structure_get_type ())
|
|
#define GST_STRUCTURE(object) ((GstStructure *)(object))
|
|
#define GST_IS_STRUCTURE(object) ((object) && (GST_STRUCTURE(object)->type == GST_TYPE_STRUCTURE))
|
|
|
|
typedef struct _GstStructure GstStructure;
|
|
|
|
typedef gboolean (*GstStructureForeachFunc) (GQuark field_id,
|
|
const GValue * value,
|
|
gpointer user_data);
|
|
|
|
typedef gboolean (*GstStructureMapFunc) (GQuark field_id,
|
|
GValue * value,
|
|
gpointer user_data);
|
|
|
|
struct _GstStructure {
|
|
GType type;
|
|
|
|
/*< private >*/
|
|
GQuark name;
|
|
|
|
/* owned by parent structure, NULL if no parent */
|
|
GstAtomicInt *parent_refcount;
|
|
|
|
GArray *fields;
|
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
|
};
|
|
|
|
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_set_parent_refcount (GstStructure *structure,
|
|
GstAtomicInt *refcount);
|
|
void gst_structure_free (GstStructure *structure);
|
|
|
|
G_CONST_RETURN gchar * gst_structure_get_name (const GstStructure *structure);
|
|
GQuark gst_structure_get_name_id (const GstStructure *structure);
|
|
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 (const GstStructure *structure,
|
|
GstStructureForeachFunc func,
|
|
gpointer user_data);
|
|
gboolean gst_structure_map_in_place (GstStructure *structure,
|
|
GstStructureMapFunc 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);
|
|
|
|
/* utility functions */
|
|
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);
|
|
|
|
gboolean gst_caps_structure_fixate_field_nearest_int (GstStructure *structure,
|
|
const char *field_name,
|
|
int target);
|
|
gboolean gst_caps_structure_fixate_field_nearest_double (GstStructure *structure,
|
|
const char *field_name,
|
|
double target);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|
|
|