mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-21 15:56:42 +00:00
structure: re-indent header file
Tabs to spaces.
This commit is contained in:
parent
08e0fcd7b2
commit
cf59bacf6d
1 changed files with 202 additions and 156 deletions
|
@ -86,173 +86,219 @@ struct _GstStructure {
|
||||||
GType gst_structure_get_type (void);
|
GType gst_structure_get_type (void);
|
||||||
|
|
||||||
GstStructure * gst_structure_new_empty (const gchar * name) G_GNUC_MALLOC;
|
GstStructure * gst_structure_new_empty (const gchar * name) G_GNUC_MALLOC;
|
||||||
|
|
||||||
GstStructure * gst_structure_new_id_empty (GQuark quark) G_GNUC_MALLOC;
|
GstStructure * gst_structure_new_id_empty (GQuark quark) G_GNUC_MALLOC;
|
||||||
|
|
||||||
GstStructure * gst_structure_new (const gchar * name,
|
GstStructure * gst_structure_new (const gchar * name,
|
||||||
const gchar * firstfield,
|
const gchar * firstfield,
|
||||||
...) G_GNUC_NULL_TERMINATED G_GNUC_MALLOC;
|
...) G_GNUC_NULL_TERMINATED G_GNUC_MALLOC;
|
||||||
|
|
||||||
GstStructure * gst_structure_new_valist (const gchar * name,
|
GstStructure * gst_structure_new_valist (const gchar * name,
|
||||||
const gchar * firstfield,
|
const gchar * firstfield,
|
||||||
va_list varargs) G_GNUC_MALLOC;
|
va_list lovarargs) G_GNUC_MALLOC;
|
||||||
|
|
||||||
GstStructure * gst_structure_new_id (GQuark name_quark,
|
GstStructure * gst_structure_new_id (GQuark name_quark,
|
||||||
GQuark field_quark,
|
GQuark field_quark,
|
||||||
...) G_GNUC_MALLOC;
|
...) G_GNUC_MALLOC;
|
||||||
GstStructure * gst_structure_copy (const GstStructure *structure) G_GNUC_MALLOC;
|
|
||||||
gboolean gst_structure_set_parent_refcount (GstStructure *structure,
|
|
||||||
gint *refcount);
|
|
||||||
void gst_structure_free (GstStructure *structure);
|
|
||||||
|
|
||||||
const gchar * gst_structure_get_name (const GstStructure *structure);
|
GstStructure * gst_structure_copy (const GstStructure * structure) G_GNUC_MALLOC;
|
||||||
GQuark gst_structure_get_name_id (const GstStructure *structure);
|
|
||||||
gboolean gst_structure_has_name (const GstStructure *structure,
|
|
||||||
const gchar *name);
|
|
||||||
void gst_structure_set_name (GstStructure *structure,
|
|
||||||
const gchar *name);
|
|
||||||
|
|
||||||
void gst_structure_id_set_value (GstStructure *structure,
|
gboolean gst_structure_set_parent_refcount (GstStructure * structure,
|
||||||
|
gint * refcount);
|
||||||
|
|
||||||
|
void gst_structure_free (GstStructure * structure);
|
||||||
|
|
||||||
|
const gchar * gst_structure_get_name (const GstStructure * structure);
|
||||||
|
|
||||||
|
GQuark gst_structure_get_name_id (const GstStructure * structure);
|
||||||
|
|
||||||
|
gboolean gst_structure_has_name (const GstStructure * structure,
|
||||||
|
const gchar * name);
|
||||||
|
|
||||||
|
void gst_structure_set_name (GstStructure * structure,
|
||||||
|
const gchar * name);
|
||||||
|
|
||||||
|
void gst_structure_id_set_value (GstStructure * structure,
|
||||||
GQuark field,
|
GQuark field,
|
||||||
const GValue *value);
|
const GValue * value);
|
||||||
void gst_structure_set_value (GstStructure *structure,
|
|
||||||
const gchar *fieldname,
|
void gst_structure_set_value (GstStructure * structure,
|
||||||
const GValue *value);
|
const gchar * fieldname,
|
||||||
void gst_structure_id_take_value (GstStructure *structure,
|
const GValue * value);
|
||||||
|
|
||||||
|
void gst_structure_id_take_value (GstStructure * structure,
|
||||||
GQuark field,
|
GQuark field,
|
||||||
GValue *value);
|
GValue * value);
|
||||||
void gst_structure_take_value (GstStructure *structure,
|
|
||||||
const gchar *fieldname,
|
void gst_structure_take_value (GstStructure * structure,
|
||||||
GValue *value);
|
const gchar * fieldname,
|
||||||
void gst_structure_set (GstStructure *structure,
|
GValue * value);
|
||||||
const gchar *fieldname,
|
|
||||||
|
void gst_structure_set (GstStructure * structure,
|
||||||
|
const gchar * fieldname,
|
||||||
...) G_GNUC_NULL_TERMINATED;
|
...) G_GNUC_NULL_TERMINATED;
|
||||||
|
|
||||||
void gst_structure_set_valist (GstStructure *structure,
|
void gst_structure_set_valist (GstStructure * structure,
|
||||||
const gchar *fieldname,
|
const gchar * fieldname,
|
||||||
va_list varargs);
|
va_list varargs);
|
||||||
|
|
||||||
void gst_structure_id_set (GstStructure *structure,
|
void gst_structure_id_set (GstStructure * structure,
|
||||||
GQuark fieldname,
|
GQuark fieldname,
|
||||||
...) G_GNUC_NULL_TERMINATED;
|
...) G_GNUC_NULL_TERMINATED;
|
||||||
|
|
||||||
void gst_structure_id_set_valist (GstStructure *structure,
|
void gst_structure_id_set_valist (GstStructure * structure,
|
||||||
GQuark fieldname,
|
GQuark fieldname,
|
||||||
va_list varargs);
|
va_list varargs);
|
||||||
|
|
||||||
gboolean gst_structure_get_valist (const GstStructure *structure,
|
gboolean gst_structure_get_valist (const GstStructure * structure,
|
||||||
const char *first_fieldname,
|
const char * first_fieldname,
|
||||||
va_list args);
|
va_list args);
|
||||||
|
|
||||||
gboolean gst_structure_get (const GstStructure *structure,
|
gboolean gst_structure_get (const GstStructure * structure,
|
||||||
const char *first_fieldname,
|
const char * first_fieldname,
|
||||||
...) G_GNUC_NULL_TERMINATED;
|
...) G_GNUC_NULL_TERMINATED;
|
||||||
|
|
||||||
gboolean gst_structure_id_get_valist (const GstStructure *structure,
|
gboolean gst_structure_id_get_valist (const GstStructure * structure,
|
||||||
GQuark first_field_id,
|
GQuark first_field_id,
|
||||||
va_list args);
|
va_list args);
|
||||||
|
|
||||||
gboolean gst_structure_id_get (const GstStructure *structure,
|
gboolean gst_structure_id_get (const GstStructure * structure,
|
||||||
GQuark first_field_id,
|
GQuark first_field_id,
|
||||||
...) G_GNUC_NULL_TERMINATED;
|
...) G_GNUC_NULL_TERMINATED;
|
||||||
|
|
||||||
const GValue * gst_structure_id_get_value (const GstStructure *structure,
|
const GValue * gst_structure_id_get_value (const GstStructure * structure,
|
||||||
GQuark field);
|
GQuark field);
|
||||||
const 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,
|
|
||||||
...) G_GNUC_NULL_TERMINATED;
|
|
||||||
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 GValue * gst_structure_get_value (const GstStructure * structure,
|
||||||
const gchar *fieldname);
|
const gchar * fieldname);
|
||||||
gboolean gst_structure_foreach (const GstStructure *structure,
|
|
||||||
|
void gst_structure_remove_field (GstStructure * structure,
|
||||||
|
const gchar * fieldname);
|
||||||
|
|
||||||
|
void gst_structure_remove_fields (GstStructure * structure,
|
||||||
|
const gchar * fieldname,
|
||||||
|
...) G_GNUC_NULL_TERMINATED;
|
||||||
|
|
||||||
|
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,
|
GstStructureForeachFunc func,
|
||||||
gpointer user_data);
|
gpointer user_data);
|
||||||
gboolean gst_structure_map_in_place (GstStructure *structure,
|
|
||||||
|
gboolean gst_structure_map_in_place (GstStructure * structure,
|
||||||
GstStructureMapFunc func,
|
GstStructureMapFunc func,
|
||||||
gpointer user_data);
|
gpointer user_data);
|
||||||
gint gst_structure_n_fields (const GstStructure *structure);
|
|
||||||
const gchar * gst_structure_nth_field_name (const GstStructure *structure, guint index);
|
gint gst_structure_n_fields (const GstStructure * structure);
|
||||||
gboolean gst_structure_id_has_field (const GstStructure *structure,
|
|
||||||
|
const gchar * gst_structure_nth_field_name (const GstStructure * structure,
|
||||||
|
guint index);
|
||||||
|
|
||||||
|
gboolean gst_structure_id_has_field (const GstStructure * structure,
|
||||||
GQuark field);
|
GQuark field);
|
||||||
gboolean gst_structure_id_has_field_typed (const GstStructure *structure,
|
|
||||||
|
gboolean gst_structure_id_has_field_typed (const GstStructure * structure,
|
||||||
GQuark field,
|
GQuark field,
|
||||||
GType type);
|
GType type);
|
||||||
gboolean gst_structure_has_field (const GstStructure *structure,
|
|
||||||
const gchar *fieldname);
|
gboolean gst_structure_has_field (const GstStructure * structure,
|
||||||
gboolean gst_structure_has_field_typed (const GstStructure *structure,
|
const gchar * fieldname);
|
||||||
const gchar *fieldname,
|
|
||||||
|
gboolean gst_structure_has_field_typed (const GstStructure * structure,
|
||||||
|
const gchar * fieldname,
|
||||||
GType type);
|
GType type);
|
||||||
|
|
||||||
/* utility functions */
|
/* utility functions */
|
||||||
gboolean gst_structure_get_boolean (const GstStructure *structure,
|
gboolean gst_structure_get_boolean (const GstStructure * structure,
|
||||||
const gchar *fieldname,
|
const gchar * fieldname,
|
||||||
gboolean *value);
|
gboolean * value);
|
||||||
gboolean gst_structure_get_int (const GstStructure *structure,
|
|
||||||
const gchar *fieldname,
|
gboolean gst_structure_get_int (const GstStructure * structure,
|
||||||
gint *value);
|
const gchar * fieldname,
|
||||||
gboolean gst_structure_get_uint (const GstStructure *structure,
|
gint * value);
|
||||||
const gchar *fieldname,
|
|
||||||
guint *value);
|
gboolean gst_structure_get_uint (const GstStructure * structure,
|
||||||
gboolean gst_structure_get_double (const GstStructure *structure,
|
const gchar * fieldname,
|
||||||
const gchar *fieldname,
|
guint * value);
|
||||||
gdouble *value);
|
|
||||||
gboolean gst_structure_get_date (const GstStructure *structure,
|
gboolean gst_structure_get_double (const GstStructure * structure,
|
||||||
const gchar *fieldname,
|
const gchar * fieldname,
|
||||||
GDate **value);
|
gdouble * value);
|
||||||
gboolean gst_structure_get_date_time (const GstStructure *structure,
|
|
||||||
const gchar *fieldname,
|
gboolean gst_structure_get_date (const GstStructure * structure,
|
||||||
GstDateTime **value);
|
const gchar * fieldname,
|
||||||
gboolean gst_structure_get_clock_time (const GstStructure *structure,
|
GDate ** value);
|
||||||
const gchar *fieldname,
|
|
||||||
GstClockTime *value);
|
gboolean gst_structure_get_date_time (const GstStructure * structure,
|
||||||
const gchar * gst_structure_get_string (const GstStructure *structure,
|
const gchar * fieldname,
|
||||||
const gchar *fieldname);
|
GstDateTime ** value);
|
||||||
gboolean gst_structure_get_enum (const GstStructure *structure,
|
|
||||||
const gchar *fieldname,
|
gboolean gst_structure_get_clock_time (const GstStructure * structure,
|
||||||
|
const gchar * fieldname,
|
||||||
|
GstClockTime * value);
|
||||||
|
|
||||||
|
const gchar * gst_structure_get_string (const GstStructure * structure,
|
||||||
|
const gchar * fieldname);
|
||||||
|
|
||||||
|
gboolean gst_structure_get_enum (const GstStructure * structure,
|
||||||
|
const gchar * fieldname,
|
||||||
GType enumtype,
|
GType enumtype,
|
||||||
gint *value);
|
gint * value);
|
||||||
gboolean gst_structure_get_fraction (const GstStructure *structure,
|
|
||||||
const gchar *fieldname,
|
|
||||||
gint *value_numerator,
|
|
||||||
gint *value_denominator);
|
|
||||||
|
|
||||||
gchar * gst_structure_to_string (const GstStructure *structure) G_GNUC_MALLOC;
|
gboolean gst_structure_get_fraction (const GstStructure * structure,
|
||||||
GstStructure * gst_structure_from_string (const gchar *string,
|
const gchar * fieldname,
|
||||||
gchar **end) G_GNUC_MALLOC;
|
gint * value_numerator,
|
||||||
|
gint * value_denominator);
|
||||||
|
|
||||||
gboolean gst_structure_fixate_field_nearest_int (GstStructure *structure,
|
gchar * gst_structure_to_string (const GstStructure * structure) G_GNUC_MALLOC;
|
||||||
const char *field_name,
|
|
||||||
|
GstStructure * gst_structure_from_string (const gchar * string,
|
||||||
|
gchar ** end) G_GNUC_MALLOC;
|
||||||
|
|
||||||
|
gboolean gst_structure_fixate_field_nearest_int (GstStructure * structure,
|
||||||
|
const char * field_name,
|
||||||
int target);
|
int target);
|
||||||
gboolean gst_structure_fixate_field_nearest_double (GstStructure *structure,
|
|
||||||
const char *field_name,
|
gboolean gst_structure_fixate_field_nearest_double (GstStructure * structure,
|
||||||
|
const char * field_name,
|
||||||
double target);
|
double target);
|
||||||
|
|
||||||
gboolean gst_structure_fixate_field_boolean (GstStructure *structure,
|
gboolean gst_structure_fixate_field_boolean (GstStructure * structure,
|
||||||
const char *field_name,
|
const char * field_name,
|
||||||
gboolean target);
|
gboolean target);
|
||||||
gboolean gst_structure_fixate_field_string (GstStructure *structure,
|
|
||||||
const char *field_name,
|
gboolean gst_structure_fixate_field_string (GstStructure * structure,
|
||||||
const gchar *target);
|
const char * field_name,
|
||||||
gboolean gst_structure_fixate_field_nearest_fraction (GstStructure *structure,
|
const gchar * target);
|
||||||
const char *field_name,
|
|
||||||
|
gboolean gst_structure_fixate_field_nearest_fraction (GstStructure * structure,
|
||||||
|
const char * field_name,
|
||||||
const gint target_numerator,
|
const gint target_numerator,
|
||||||
const gint target_denominator);
|
const gint target_denominator);
|
||||||
gboolean gst_structure_fixate_field (GstStructure *structure,
|
|
||||||
const char *field_name);
|
|
||||||
|
|
||||||
gboolean gst_structure_is_equal(const GstStructure *structure1,
|
gboolean gst_structure_fixate_field (GstStructure * structure,
|
||||||
const GstStructure *structure2);
|
const char * field_name);
|
||||||
gboolean gst_structure_is_subset(const GstStructure *subset,
|
|
||||||
const GstStructure *superset);
|
void gst_structure_fixate (GstStructure * structure);
|
||||||
gboolean gst_structure_can_intersect(const GstStructure *struct1,
|
|
||||||
const GstStructure *struct2);
|
gboolean gst_structure_is_equal (const GstStructure * structure1,
|
||||||
GstStructure* gst_structure_intersect (const GstStructure *struct1,
|
const GstStructure * structure2);
|
||||||
const GstStructure *struct2) G_GNUC_MALLOC;
|
|
||||||
void gst_structure_fixate (GstStructure *structure);
|
gboolean gst_structure_is_subset (const GstStructure * subset,
|
||||||
|
const GstStructure * superset);
|
||||||
|
|
||||||
|
gboolean gst_structure_can_intersect (const GstStructure * struct1,
|
||||||
|
const GstStructure * struct2);
|
||||||
|
|
||||||
|
GstStructure * gst_structure_intersect (const GstStructure * struct1,
|
||||||
|
const GstStructure * struct2) G_GNUC_MALLOC;
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue