summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sf.net>2009-11-25 14:18:14 +0200
committerStefan Kost <ensonic@users.sf.net>2009-11-25 14:18:14 +0200
commit7ff832d36ef7f4da29771e9e2435c2e5b2242b59 (patch)
tree6f8edcc1ba299834b1d2ac02792b8400812cd83a
parent0b5e8f0e57fca1735b67d6aaf4d5f241d6420294 (diff)
docs: fix gtk-doc syntax for doc-blob start
-rw-r--r--gst/gstutils.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/gst/gstutils.c b/gst/gstutils.c
index ef7b9757a8..baf2b88264 100644
--- a/gst/gstutils.c
+++ b/gst/gstutils.c
@@ -3804,7 +3804,8 @@ gst_util_array_binary_search (gpointer array, guint num_elements,
* Returns 1 if none other found.
* This is Euclid's algorithm. */
-/** gst_util_greatest_common_divisor:
+/**
+ * gst_util_greatest_common_divisor:
* @a: First value as #gint
* @b: Second value as #gint
*
@@ -3828,7 +3829,8 @@ gst_util_greatest_common_divisor (gint a, gint b)
return ABS (a);
}
-/** gst_util_fraction_to_double:
+/**
+ * gst_util_fraction_to_double:
* @src_n: Fraction numerator as #gint
* @src_d: Fraction denominator #gint
* @dest: pointer to a #gdouble for the result
@@ -3856,7 +3858,8 @@ gst_util_fraction_to_double (gint src_n, gint src_d, gdouble * dest)
* This algorithm takes care of overflows.
*/
-/** gst_util_double_to_fraction:
+/**
+ * gst_util_double_to_fraction:
* @src: #gdouble to transform
* @dest_n: pointer to a #gint to hold the result numerator
* @dest_d: pointer to a #gint to hold the result denominator
@@ -3951,7 +3954,8 @@ gst_util_double_to_fraction (gdouble src, gint * dest_n, gint * dest_d)
*dest_d = D;
}
-/** gst_util_fraction_multiply:
+/**
+ * gst_util_fraction_multiply:
* @a_n: Numerator of first value
* @a_d: Denominator of first value
* @b_n: Numerator of second value
@@ -3993,7 +3997,8 @@ gst_util_fraction_multiply (gint a_n, gint a_d, gint b_n, gint b_d,
return TRUE;
}
-/** gst_util_fraction_add:
+/**
+ * gst_util_fraction_add:
* @a_n: Numerator of first value
* @a_d: Denominator of first value
* @b_n: Numerator of second value