mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
Update debug categories
Remove some categories marked for deletion. Add a category for GstMemory.
This commit is contained in:
parent
f5886a17f5
commit
e60b67f907
2 changed files with 4 additions and 12 deletions
|
@ -171,8 +171,7 @@ DEFINE_INLINE_G_VALUE_GET_UNCHECKED(const gchar *,string,v_pointer)
|
|||
#ifndef GST_REMOVE_GST_DEBUG
|
||||
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_GST_INIT;
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_AUTOPLUG; /* FIXME 0.11: remove? */
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_AUTOPLUG_ATTEMPT; /* FIXME 0.11: remove? */
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_MEMORY;
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_PARENTAGE;
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_STATES;
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_SCHEDULING;
|
||||
|
@ -199,7 +198,6 @@ GST_EXPORT GstDebugCategory *GST_CAT_SIGNAL;
|
|||
GST_EXPORT GstDebugCategory *GST_CAT_PROBE;
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_REGISTRY;
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_QOS;
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_TYPES; /* FIXME 0.11: remove? */
|
||||
|
||||
/* Categories that should be completely private to
|
||||
* libgstreamer should be done like this: */
|
||||
|
|
|
@ -139,8 +139,7 @@ GstDebugLevel _gst_debug_min = GST_LEVEL_NONE;
|
|||
GstDebugCategory *GST_CAT_DEFAULT = NULL;
|
||||
|
||||
GstDebugCategory *GST_CAT_GST_INIT = NULL;
|
||||
GstDebugCategory *GST_CAT_AUTOPLUG = NULL;
|
||||
GstDebugCategory *GST_CAT_AUTOPLUG_ATTEMPT = NULL;
|
||||
GstDebugCategory *GST_CAT_MEMORY = NULL;
|
||||
GstDebugCategory *GST_CAT_PARENTAGE = NULL;
|
||||
GstDebugCategory *GST_CAT_STATES = NULL;
|
||||
GstDebugCategory *GST_CAT_SCHEDULING = NULL;
|
||||
|
@ -157,7 +156,6 @@ GstDebugCategory *GST_CAT_PIPELINE = NULL;
|
|||
GstDebugCategory *GST_CAT_PLUGIN_LOADING = NULL;
|
||||
GstDebugCategory *GST_CAT_PLUGIN_INFO = NULL;
|
||||
GstDebugCategory *GST_CAT_PROPERTIES = NULL;
|
||||
GstDebugCategory *GST_CAT_TYPES = NULL;
|
||||
GstDebugCategory *GST_CAT_NEGOTIATION = NULL;
|
||||
GstDebugCategory *GST_CAT_REFCOUNTING = NULL;
|
||||
GstDebugCategory *GST_CAT_ERROR_SYSTEM = NULL;
|
||||
|
@ -353,10 +351,8 @@ _priv_gst_debug_init (void)
|
|||
/* FIXME: add descriptions here */
|
||||
GST_CAT_GST_INIT = _gst_debug_category_new ("GST_INIT",
|
||||
GST_DEBUG_BOLD | GST_DEBUG_FG_RED, NULL);
|
||||
GST_CAT_AUTOPLUG = _gst_debug_category_new ("GST_AUTOPLUG",
|
||||
GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
|
||||
GST_CAT_AUTOPLUG_ATTEMPT = _gst_debug_category_new ("GST_AUTOPLUG_ATTEMPT",
|
||||
GST_DEBUG_BOLD | GST_DEBUG_FG_CYAN | GST_DEBUG_BG_BLUE, NULL);
|
||||
GST_CAT_MEMORY = _gst_debug_category_new ("GST_MEMORY",
|
||||
GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, "memory");
|
||||
GST_CAT_PARENTAGE = _gst_debug_category_new ("GST_PARENTAGE",
|
||||
GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
|
||||
GST_CAT_STATES = _gst_debug_category_new ("GST_STATES",
|
||||
|
@ -386,8 +382,6 @@ _priv_gst_debug_init (void)
|
|||
GST_DEBUG_BOLD | GST_DEBUG_FG_CYAN, NULL);
|
||||
GST_CAT_PROPERTIES = _gst_debug_category_new ("GST_PROPERTIES",
|
||||
GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_BLUE, NULL);
|
||||
GST_CAT_TYPES = _gst_debug_category_new ("GST_TYPES",
|
||||
GST_DEBUG_BOLD | GST_DEBUG_FG_WHITE | GST_DEBUG_BG_RED, NULL);
|
||||
GST_CAT_NEGOTIATION = _gst_debug_category_new ("GST_NEGOTIATION",
|
||||
GST_DEBUG_BOLD | GST_DEBUG_FG_BLUE, NULL);
|
||||
GST_CAT_REFCOUNTING = _gst_debug_category_new ("GST_REFCOUNTING",
|
||||
|
|
Loading…
Reference in a new issue