whitespace and doc style fixes

Original commit message from CVS:
whitespace and doc style fixes
This commit is contained in:
Thomas Vander Stichele 2003-12-24 14:36:03 +00:00
parent 28f19dd965
commit dfedf4271f
2 changed files with 54 additions and 50 deletions

View file

@ -1,3 +1,7 @@
2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gst.c: whitespace and doc style fixes
2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org> 2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gstformat.h: remove trailing whitespace from enum for gtk-doc * gst/gstformat.h: remove trailing whitespace from enum for gtk-doc

View file

@ -137,7 +137,7 @@ static const struct poptOption gstreamer_options[] = {
* *
* Returns a popt option table with GStreamer's argument specifications. The * Returns a popt option table with GStreamer's argument specifications. The
* table is set up to use popt's callback method, so whenever the parsing is * table is set up to use popt's callback method, so whenever the parsing is
* actually performed (via a poptGetContext()), the GStreamer libraries will * actually performed (via poptGetContext), the GStreamer libraries will
* be initialized. * be initialized.
* *
* Returns: a pointer to the static GStreamer option table. * Returns: a pointer to the static GStreamer option table.
@ -161,7 +161,7 @@ gst_init_get_popt_table (void)
* for some reason. If you want your program to fail fatally, * for some reason. If you want your program to fail fatally,
* use gst_init() instead. * use gst_init() instead.
* *
* Returns: TRUE if GStreamer coul be initialized * Returns: %TRUE if GStreamer could be initialized.
*/ */
gboolean gboolean
gst_init_check (int *argc, char **argv[]) gst_init_check (int *argc, char **argv[])
@ -220,7 +220,7 @@ gst_init_with_popt_table (int *argc, char **argv[],
* setting up internal path lists, * setting up internal path lists,
* registering built-in elements, and loading standard plugins. * registering built-in elements, and loading standard plugins.
* *
* Returns: TRUE if GStreamer coul be initialized * Returns: %TRUE if GStreamer could be initialized.
*/ */
gboolean gboolean
gst_init_check_with_popt_table (int *argc, char **argv[], gst_init_check_with_popt_table (int *argc, char **argv[],
@ -730,7 +730,7 @@ init_popt_callback (poptContext context, enum poptCallbackReason reason,
/** /**
* gst_use_threads: * gst_use_threads:
* @use_threads: flag indicating threads should be used * @use_threads: a #gboolean indicating whether threads should be used
* *
* Instructs the core to turn on/off threading. When threading * Instructs the core to turn on/off threading. When threading
* is turned off, all thread operations such as mutexes and conditionals * is turned off, all thread operations such as mutexes and conditionals
@ -753,9 +753,9 @@ gst_use_threads (gboolean use_threads)
/** /**
* gst_has_threads: * gst_has_threads:
* *
* Query if GStreamer has threads enabled. * Queries if GStreamer has threads enabled.
* *
* Returns: TRUE if threads are enabled. * Returns: %TRUE if threads are enabled.
*/ */
gboolean gboolean
gst_has_threads (void) gst_has_threads (void)
@ -769,7 +769,7 @@ static GSList *mainloops = NULL;
/** /**
* gst_main: * gst_main:
* *
* Enter the main GStreamer processing loop * Enters the main GStreamer processing loop.
*/ */
void void
gst_main (void) gst_main (void)
@ -785,7 +785,7 @@ gst_main (void)
/** /**
* gst_main_quit: * gst_main_quit:
* *
* Exits the main GStreamer processing loop * Exits the main GStreamer processing loop.
*/ */
void void
gst_main_quit (void) gst_main_quit (void)
@ -806,7 +806,7 @@ gst_main_quit (void)
* @minor: pointer to a guint to store the minor version number * @minor: pointer to a guint to store the minor version number
* @micro: pointer to a guint to store the micro version number * @micro: pointer to a guint to store the micro version number
* *
* Gets the version number of the GStreamer library * Gets the version number of the GStreamer library.
*/ */
void void
gst_version (guint *major, guint *minor, guint *micro) gst_version (guint *major, guint *minor, guint *micro)