Small documentation fixes. Fixes #523978.
authorMark Nauwelaerts <manauw@skynet.be>
Mon, 24 Mar 2008 16:44:25 +0000 (16:44 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Mon, 24 Mar 2008 16:44:25 +0000 (16:44 +0000)
Original commit message from CVS:
Patch by: Mark Nauwelaerts <manauw at skynet be>
* gst/gstclock.h:
* libs/gst/base/gstbasesrc.h:
* libs/gst/base/gstbasetransform.c:
* libs/gst/check/gstcheck.c:
Small documentation fixes. Fixes #523978.

ChangeLog
gst/gstclock.h
libs/gst/base/gstbasesrc.h
libs/gst/base/gstbasetransform.c
libs/gst/check/gstcheck.c

index a613f7f..31fbea7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
 
+       Patch by: Mark Nauwelaerts <manauw at skynet be>
+
+       * gst/gstclock.h:
+       * libs/gst/base/gstbasesrc.h:
+       * libs/gst/base/gstbasetransform.c:
+       * libs/gst/check/gstcheck.c:
+       Small documentation fixes. Fixes #523978.
+
+2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
+
        * plugins/elements/gstfdsink.c: (gst_fd_sink_render):
        * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
        Also retry our poll_wait when we get EAGAIN. Fixes #524041.
index 54cb579..57a5d3c 100644 (file)
@@ -118,6 +118,7 @@ typedef gpointer GstClockID;
 #define GST_TIME_AS_SECONDS(time)  ((time) / GST_SECOND)
 /**
  * GST_TIME_AS_MSECONDS:
+ * @time: the time
  *
  * Convert a #GstClockTime to milliseconds (1/1000 of a second).
  *
@@ -126,6 +127,7 @@ typedef gpointer GstClockID;
 #define GST_TIME_AS_MSECONDS(time) ((time) / G_GINT64_CONSTANT (1000000))
 /**
  * GST_TIME_TO_USECONDS:
+ * @time: the time
  *
  * Convert a #GstClockTime to microseconds (1/1000000 of a second).
  *
@@ -134,6 +136,7 @@ typedef gpointer GstClockID;
 #define GST_TIME_AS_USECONDS(time) ((time) / G_GINT64_CONSTANT (1000))
 /**
  * GST_TIME_TO_NSECONDS:
+ * @time: the time
  *
  * Convert a #GstClockTime to nanoseconds (1/1000000000 of a second).
  *
index efdd1c2..2d9e224 100644 (file)
@@ -241,7 +241,8 @@ gboolean        gst_base_src_query_latency (GstBaseSrc *src, gboolean * live,
                                             GstClockTime * min_latency, 
                                            GstClockTime * max_latency);
 
-void           gst_base_src_set_do_timestamp (GstBaseSrc *src, gboolean live);
+void           gst_base_src_set_do_timestamp (GstBaseSrc *src,
+                                              gboolean timestamp);
 gboolean       gst_base_src_get_do_timestamp (GstBaseSrc *src);
 
 G_END_DECLS
index 96fc374..553434d 100644 (file)
@@ -1817,7 +1817,7 @@ gst_base_transform_is_passthrough (GstBaseTransform * trans)
  * to the transform_ip function.
  * <itemizedlist>
  *   <listitem>Always TRUE if no transform function is implemented.</listitem>
- *   <listitem>Always FALSE if ONLY transform_ip function is implemented.</listitem>
+ *   <listitem>Always FALSE if ONLY transform function is implemented.</listitem>
  * </itemizedlist>
  *
  * MT safe.
index f656406..492f875 100644 (file)
@@ -533,7 +533,7 @@ gst_check_element_push_buffer_list (const gchar * element_name,
 
 /**
  * gst_check_element_push_buffer:
- * @element: name of the element that needs to be created
+ * @element_name: name of the element that needs to be created
  * @buffer_in: push this buffer to the element
  * @buffer_out: compare the result with this buffer
  *