Small documentation fixes. Fixes #523978.

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.
This commit is contained in:
Mark Nauwelaerts 2008-03-24 16:44:25 +00:00 committed by Wim Taymans
parent 4b608cc1f1
commit 7850967084
5 changed files with 17 additions and 3 deletions

View file

@ -1,3 +1,13 @@
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):

View 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).
*

View 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

View 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.

View 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
*