summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 ca1ed7dd2c..97ec15af89 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 ca449bc45a..30c03ecf23 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 8f918f4c3c..d3ccb4d4ca 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 a5211fb8ae..0898c397e2 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)