mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
gst/gstinfo.c: Fix some spelling errors.
Original commit message from CVS: * gst/gstinfo.c: Fix some spelling errors.
This commit is contained in:
parent
00e832a463
commit
ca048215eb
2 changed files with 16 additions and 8 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-10-15 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* gst/gstinfo.c:
|
||||||
|
Fix some spelling errors.
|
||||||
|
|
||||||
2007-10-14 Wim Taymans <wim.taymans@gmail.com>
|
2007-10-14 Wim Taymans <wim.taymans@gmail.com>
|
||||||
|
|
||||||
* gst/gstbin.c: (bin_handle_async_done):
|
* gst/gstbin.c: (bin_handle_async_done):
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SECTION:gstinfo
|
* SECTION:gstinfo
|
||||||
* @short_description: Debugging and logging facillities
|
* @short_description: Debugging and logging facilities
|
||||||
* @see_also: #GstConfig, #Gst for command line parameters
|
* @see_also: #GstConfig, #Gst for command line parameters
|
||||||
* and environment variables that affect the debugging output.
|
* and environment variables that affect the debugging output.
|
||||||
*
|
*
|
||||||
|
@ -77,7 +77,7 @@
|
||||||
* subsystem was compiled out, #GST_DISABLE_GST_DEBUG is defined in
|
* subsystem was compiled out, #GST_DISABLE_GST_DEBUG is defined in
|
||||||
* <gst/gst.h>,
|
* <gst/gst.h>,
|
||||||
* so you can check that before doing your trick.
|
* so you can check that before doing your trick.
|
||||||
* Disabling the debugging subsystem will give you a slight (read: unnoticable)
|
* Disabling the debugging subsystem will give you a slight (read: unnoticeable)
|
||||||
* speed increase and will reduce the size of your compiled code. The GStreamer
|
* speed increase and will reduce the size of your compiled code. The GStreamer
|
||||||
* library itself becomes around 10% smaller.
|
* library itself becomes around 10% smaller.
|
||||||
*
|
*
|
||||||
|
@ -104,6 +104,7 @@
|
||||||
# include <process.h> /* getpid on win32 */
|
# include <process.h> /* getpid on win32 */
|
||||||
#endif
|
#endif
|
||||||
#include <string.h> /* G_VA_COPY */
|
#include <string.h> /* G_VA_COPY */
|
||||||
|
|
||||||
#include "gst_private.h"
|
#include "gst_private.h"
|
||||||
#include "gstutils.h"
|
#include "gstutils.h"
|
||||||
#include "gstsegment.h"
|
#include "gstsegment.h"
|
||||||
|
@ -692,7 +693,7 @@ gst_debug_log_default (GstDebugCategory * category, GstDebugLevel level,
|
||||||
* gst_debug_level_get_name:
|
* gst_debug_level_get_name:
|
||||||
* @level: the level to get the name for
|
* @level: the level to get the name for
|
||||||
*
|
*
|
||||||
* Get the string trepresentation of a debugging level
|
* Get the string representation of a debugging level
|
||||||
*
|
*
|
||||||
* Returns: the name
|
* Returns: the name
|
||||||
*/
|
*/
|
||||||
|
@ -797,7 +798,7 @@ gst_debug_remove_with_compare_func (GCompareFunc func, gpointer data)
|
||||||
* gst_debug_remove_log_function:
|
* gst_debug_remove_log_function:
|
||||||
* @func: the log function to remove
|
* @func: the log function to remove
|
||||||
*
|
*
|
||||||
* Removes all registrered instances of the given logging functions.
|
* Removes all registered instances of the given logging functions.
|
||||||
*
|
*
|
||||||
* Returns: How many instances of the function were removed
|
* Returns: How many instances of the function were removed
|
||||||
*/
|
*/
|
||||||
|
@ -821,7 +822,7 @@ gst_debug_remove_log_function (GstLogFunction func)
|
||||||
* gst_debug_remove_log_function_by_data:
|
* gst_debug_remove_log_function_by_data:
|
||||||
* @data: user data of the log function to remove
|
* @data: user data of the log function to remove
|
||||||
*
|
*
|
||||||
* Removes all registrered instances of log functions with the given user data.
|
* Removes all registered instances of log functions with the given user data.
|
||||||
*
|
*
|
||||||
* Returns: How many instances of the function were removed
|
* Returns: How many instances of the function were removed
|
||||||
*/
|
*/
|
||||||
|
@ -1127,7 +1128,7 @@ gst_debug_category_reset_threshold (GstDebugCategory * category)
|
||||||
* gst_debug_category_get_threshold:
|
* gst_debug_category_get_threshold:
|
||||||
* @category: a #GstDebugCategory to get threshold of.
|
* @category: a #GstDebugCategory to get threshold of.
|
||||||
*
|
*
|
||||||
* Returns the threshold of a #GstCategory.
|
* Returns the threshold of a #GstDebugCategory.
|
||||||
*
|
*
|
||||||
* Returns: the #GstDebugLevel that is used as threshold.
|
* Returns: the #GstDebugLevel that is used as threshold.
|
||||||
*/
|
*/
|
||||||
|
@ -1264,6 +1265,8 @@ _gst_debug_register_funcptr (GstDebugFuncPtr func, const gchar * ptrname)
|
||||||
g_static_mutex_unlock (&__dbg_functions_mutex);
|
g_static_mutex_unlock (&__dbg_functions_mutex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*** PRINTF EXTENSIONS ********************************************************/
|
||||||
|
|
||||||
#ifdef HAVE_PRINTF_EXTENSION
|
#ifdef HAVE_PRINTF_EXTENSION
|
||||||
static int
|
static int
|
||||||
_gst_info_printf_extension_ptr (FILE * stream, const struct printf_info *info,
|
_gst_info_printf_extension_ptr (FILE * stream, const struct printf_info *info,
|
||||||
|
@ -1374,7 +1377,7 @@ __cyg_profile_func_exit (void *this_fn, void *call_site)
|
||||||
/**
|
/**
|
||||||
* gst_debug_print_stack_trace:
|
* gst_debug_print_stack_trace:
|
||||||
*
|
*
|
||||||
* If GST_ENABLE_FUNC_INSTRUMENTATION is defined a stacktracke is available for
|
* If GST_ENABLE_FUNC_INSTRUMENTATION is defined a stacktrace is available for
|
||||||
* gstreamer code, which can be printed with this function.
|
* gstreamer code, which can be printed with this function.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
|
@ -1401,4 +1404,4 @@ gst_debug_print_stack_trace (void)
|
||||||
/* nothing because it's compiled out */
|
/* nothing because it's compiled out */
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* GST_ENABLE_FUNC_INTSTRUMENTATION */
|
#endif /* GST_ENABLE_FUNC_INSTRUMENTATION */
|
||||||
|
|
Loading…
Reference in a new issue