summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-10-16 16:53:49 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-10-16 16:53:49 +0100
commit5b25761f2909b2fb7fa500fb8703341b71a0a208 (patch)
tree0bd7347c5989678852756395ce8ae9104b64c439
parent349899e73541987c4c93a64e55d5f81a2bfb8f21 (diff)
docs: add some gtk-doc Since: markers
Add some gtk-doc Since: markers, fix one Since: marker, fix typo.
-rw-r--r--gst/gstparse.c2
-rw-r--r--gst/gstvalue.c6
-rw-r--r--gst/gstvalue.h4
-rw-r--r--libs/gst/base/gstadapter.c6
4 files changed, 14 insertions, 4 deletions
diff --git a/gst/gstparse.c b/gst/gstparse.c
index ca1ed7dd2..97ec15af8 100644
--- a/gst/gstparse.c
+++ b/gst/gstparse.c
@@ -29,7 +29,7 @@
* These function allow to create a pipeline based on the syntax used in the
* gst-launch utility (see man-page for syntax documentation).
*
- * Please note that these functions take serveral meassures to create even
+ * Please note that these functions take several measures to create
* somewhat dynamic pipelines. Due to that such pipelines are not always
* reuseable (set the state to NULL and back to PLAYING).
*/
diff --git a/gst/gstvalue.c b/gst/gstvalue.c
index ca449bc45..30c03ecf2 100644
--- a/gst/gstvalue.c
+++ b/gst/gstvalue.c
@@ -963,6 +963,8 @@ gst_value_lcopy_int64_range (const GValue * value, guint n_collect_values,
* @end: the end of the range
*
* Sets @value to the range specified by @start and @end.
+ *
+ * Since: 0.10.31
*/
void
gst_value_set_int64_range (GValue * value, gint64 start, gint64 end)
@@ -981,6 +983,8 @@ gst_value_set_int64_range (GValue * value, gint64 start, gint64 end)
* Gets the minimum of the range specified by @value.
*
* Returns: the minimum of the range
+ *
+ * Since: 0.10.31
*/
gint64
gst_value_get_int64_range_min (const GValue * value)
@@ -997,6 +1001,8 @@ gst_value_get_int64_range_min (const GValue * value)
* Gets the maximum of the range specified by @value.
*
* Returns: the maxumum of the range
+ *
+ * Since: 0.10.31
*/
gint64
gst_value_get_int64_range_max (const GValue * value)
diff --git a/gst/gstvalue.h b/gst/gstvalue.h
index 8f918f4c3..d3ccb4d4c 100644
--- a/gst/gstvalue.h
+++ b/gst/gstvalue.h
@@ -106,6 +106,8 @@ G_BEGIN_DECLS
* @x: the #GValue to check
*
* Checks if the given #GValue contains a #GST_TYPE_INT64_RANGE value.
+ *
+ * Since: 0.10.31
*/
#define GST_VALUE_HOLDS_INT64_RANGE(x) (G_VALUE_HOLDS((x), gst_int64_range_get_type ()))
@@ -217,6 +219,8 @@ G_BEGIN_DECLS
* a #GValue type that represents an #gint64 range
*
* Returns: the #GType of GstInt64Range
+ *
+ * Since: 0.10.31
*/
#define GST_TYPE_INT64_RANGE gst_int64_range_get_type ()
diff --git a/libs/gst/base/gstadapter.c b/libs/gst/base/gstadapter.c
index a5211fb8a..0898c397e 100644
--- a/libs/gst/base/gstadapter.c
+++ b/libs/gst/base/gstadapter.c
@@ -722,10 +722,10 @@ done:
* Caller owns returned list and contained buffers. gst_buffer_unref() each
* buffer in the list before freeng the list after usage.
*
- * Since: 0.10.24
- *
- * Returns: a #GSList of buffers containing the first @nbytes of the adapter,
+ * Returns: a #GSList of buffers containing the first @nbytes of the adapter,
* or #NULL if @nbytes bytes are not available
+ *
+ * Since: 0.10.31
*/
GList *
gst_adapter_take_list (GstAdapter * adapter, guint nbytes)