diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2005-11-21 14:28:21 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2005-11-21 14:28:21 +0000 |
commit | 3e17fdcbf933a793fca1d7f9b84b71764869ac29 (patch) | |
tree | eb7a22c8ecf8b9cd0061cda84f4545bb042583d7 /gst/gststructure.c | |
parent | 58acf5f0465f4967df2a77c9815cfa65f1c8e631 (diff) |
Rename gst_caps_structure_fixate_* to gst_structure_fixate_* (#322027)
Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gststructure.c: (gst_structure_fixate_field_nearest_int),
(gst_structure_fixate_field_nearest_double),
(gst_structure_fixate_field_boolean):
* gst/gststructure.h:
* win32/common/libgstreamer.def:
* win32/gstreamer.def:
Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
(#322027)
Diffstat (limited to 'gst/gststructure.c')
-rw-r--r-- | gst/gststructure.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gst/gststructure.c b/gst/gststructure.c index f4bdc7f85..ad8319722 100644 --- a/gst/gststructure.c +++ b/gst/gststructure.c @@ -1747,7 +1747,7 @@ gst_structure_copy_conditional (const GstStructure * structure) /* fixate utility functions */ /** - * gst_caps_structure_fixate_field_nearest_int: + * gst_structure_fixate_field_nearest_int: * @structure: a #GstStructure * @field_name: a field in @structure * @target: the target value of the fixation @@ -1757,9 +1757,8 @@ gst_structure_copy_conditional (const GstStructure * structure) * * Returns: TRUE if the structure could be fixated */ -/* FIXME: rename to gst_structure_... */ gboolean -gst_caps_structure_fixate_field_nearest_int (GstStructure * structure, +gst_structure_fixate_field_nearest_int (GstStructure * structure, const char *field_name, int target) { const GValue *value; @@ -1812,7 +1811,7 @@ gst_caps_structure_fixate_field_nearest_int (GstStructure * structure, } /** - * gst_caps_structure_fixate_field_nearest_double: + * gst_structure_fixate_field_nearest_double: * @structure: a #GstStructure * @field_name: a field in @structure * @target: the target value of the fixation @@ -1823,7 +1822,7 @@ gst_caps_structure_fixate_field_nearest_int (GstStructure * structure, * Returns: TRUE if the structure could be fixated */ gboolean -gst_caps_structure_fixate_field_nearest_double (GstStructure * structure, +gst_structure_fixate_field_nearest_double (GstStructure * structure, const char *field_name, double target) { const GValue *value; @@ -1877,7 +1876,7 @@ gst_caps_structure_fixate_field_nearest_double (GstStructure * structure, } /** - * gst_caps_structure_fixate_field_boolean: + * gst_structure_fixate_field_boolean: * @structure: a #GstStructure * @field_name: a field in @structure * @target: the target value of the fixation @@ -1887,9 +1886,8 @@ gst_caps_structure_fixate_field_nearest_double (GstStructure * structure, * * Returns: TRUE if the structure could be fixated */ -/* FIXME: rename to gst_structure_... */ gboolean -gst_caps_structure_fixate_field_boolean (GstStructure * structure, +gst_structure_fixate_field_boolean (GstStructure * structure, const char *field_name, gboolean target) { const GValue *value; |