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> 2008-03-24 Wim Taymans <wim.taymans@collabora.co.uk>
* plugins/elements/gstfdsink.c: (gst_fd_sink_render): * 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) #define GST_TIME_AS_SECONDS(time) ((time) / GST_SECOND)
/** /**
* GST_TIME_AS_MSECONDS: * GST_TIME_AS_MSECONDS:
* @time: the time
* *
* Convert a #GstClockTime to milliseconds (1/1000 of a second). * 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)) #define GST_TIME_AS_MSECONDS(time) ((time) / G_GINT64_CONSTANT (1000000))
/** /**
* GST_TIME_TO_USECONDS: * GST_TIME_TO_USECONDS:
* @time: the time
* *
* Convert a #GstClockTime to microseconds (1/1000000 of a second). * 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)) #define GST_TIME_AS_USECONDS(time) ((time) / G_GINT64_CONSTANT (1000))
/** /**
* GST_TIME_TO_NSECONDS: * GST_TIME_TO_NSECONDS:
* @time: the time
* *
* Convert a #GstClockTime to nanoseconds (1/1000000000 of a second). * 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 * min_latency,
GstClockTime * max_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); gboolean gst_base_src_get_do_timestamp (GstBaseSrc *src);
G_END_DECLS G_END_DECLS

View file

@ -1817,7 +1817,7 @@ gst_base_transform_is_passthrough (GstBaseTransform * trans)
* to the transform_ip function. * to the transform_ip function.
* <itemizedlist> * <itemizedlist>
* <listitem>Always TRUE if no transform function is implemented.</listitem> * <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> * </itemizedlist>
* *
* MT safe. * MT safe.

View file

@ -533,7 +533,7 @@ gst_check_element_push_buffer_list (const gchar * element_name,
/** /**
* gst_check_element_push_buffer: * 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_in: push this buffer to the element
* @buffer_out: compare the result with this buffer * @buffer_out: compare the result with this buffer
* *