diff --git a/gst/gstcaps.c b/gst/gstcaps.c index 083f296449..0ac7a7e100 100644 --- a/gst/gstcaps.c +++ b/gst/gstcaps.c @@ -960,7 +960,7 @@ gst_caps_set_value (GstCaps * caps, const char *field, const GValue * value) * Sets fields in a #GstCaps. The arguments must be passed in the same * manner as gst_structure_set(), and be NULL-terminated. * Prior to GStreamer version 0.10.26, this function failed when - * @caps was not simple. If your code needs to work with those versions + * @caps was not simple. If your code needs to work with those versions * of GStreamer, you may only call this function when GST_CAPS_IS_SIMPLE() * is %TRUE for @caps. */ diff --git a/gst/gststructure.c b/gst/gststructure.c index 343bffc405..aec4e673e8 100644 --- a/gst/gststructure.c +++ b/gst/gststructure.c @@ -29,7 +29,7 @@ * * In addition to the key/value pairs, a #GstStructure also has a name. The name * starts with a letter and can be folled by letters, numbers and any of "/-_.:". - * + * * #GstStructure is used by various GStreamer subsystems to store information * in a flexible and extensible way. A #GstStructure does not have a refcount * because it usually is part of a higher level object such as #GstCaps. It @@ -39,7 +39,7 @@ * A #GstStructure can be created with gst_structure_empty_new() or * gst_structure_new(), which both take a name and an optional set of * key/value pairs along with the types of the values. - * + * * Field values can be changed with gst_structure_set_value() or * gst_structure_set(). * @@ -1466,7 +1466,7 @@ gst_structure_get_date_time (const GstStructure * structure, * and has the correct type. * * Returns: TRUE if the value could be set correctly. If there was no field - * with @fieldname or the existing field did not contain a #GstClockTime, this + * with @fieldname or the existing field did not contain a #GstClockTime, this * function returns FALSE. */ gboolean @@ -1502,7 +1502,7 @@ gst_structure_get_clock_time (const GstStructure * structure, * and has the correct type. * * Returns: TRUE if the value could be set correctly. If there was no field - * with @fieldname or the existing field did not contain a double, this + * with @fieldname or the existing field did not contain a double, this * function returns FALSE. */ gboolean @@ -1606,12 +1606,12 @@ gst_structure_get_enum (const GstStructure * structure, * @value_numerator: (out): a pointer to an int to set * @value_denominator: (out): a pointer to an int to set * - * Sets the integers pointed to by @value_numerator and @value_denominator - * corresponding to the value of the given field. Caller is responsible + * Sets the integers pointed to by @value_numerator and @value_denominator + * corresponding to the value of the given field. Caller is responsible * for making sure the field exists and has the correct type. * * Returns: TRUE if the values could be set correctly. If there was no field - * with @fieldname or the existing field did not contain a GstFraction, this + * with @fieldname or the existing field did not contain a GstFraction, this * function returns FALSE. */ gboolean @@ -2566,7 +2566,7 @@ gst_structure_fixate_field_string (GstStructure * structure, * @target_denominator: The denominator of the target value of the fixation * * Fixates a #GstStructure by changing the given field to the nearest - * fraction to @target_numerator/@target_denominator that is a subset + * fraction to @target_numerator/@target_denominator that is a subset * of the existing field. * * Returns: TRUE if the structure could be fixated