mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
parent
36bb7c76b1
commit
c403e4b7f0
2 changed files with 57 additions and 1 deletions
|
@ -119,7 +119,7 @@ gboolean gst_registry_binary_write_cache (GstRegistry * registry, const char *
|
|||
|
||||
/*** debugging categories *****************************************************/
|
||||
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
#ifndef GST_REMOVE_GST_DEBUG
|
||||
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_GST_INIT;
|
||||
GST_EXPORT GstDebugCategory *GST_CAT_AUTOPLUG;
|
||||
|
|
|
@ -1639,6 +1639,62 @@ _gst_debug_dump_mem (GstDebugCategory * cat, const gchar * file,
|
|||
|
||||
#else /* !GST_DISABLE_GST_DEBUG */
|
||||
#ifndef GST_REMOVE_DISABLED
|
||||
|
||||
gboolean __gst_debug_enabled = FALSE;
|
||||
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_PARENTAGE = NULL;
|
||||
GstDebugCategory *GST_CAT_STATES = NULL;
|
||||
GstDebugCategory *GST_CAT_SCHEDULING = NULL;
|
||||
|
||||
GstDebugCategory *GST_CAT_BUFFER = NULL;
|
||||
GstDebugCategory *GST_CAT_BUS = NULL;
|
||||
GstDebugCategory *GST_CAT_CAPS = NULL;
|
||||
GstDebugCategory *GST_CAT_CLOCK = NULL;
|
||||
GstDebugCategory *GST_CAT_ELEMENT_PADS = NULL;
|
||||
GstDebugCategory *GST_CAT_PADS = NULL;
|
||||
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_XML = NULL;
|
||||
GstDebugCategory *GST_CAT_NEGOTIATION = NULL;
|
||||
GstDebugCategory *GST_CAT_REFCOUNTING = NULL;
|
||||
GstDebugCategory *GST_CAT_ERROR_SYSTEM = NULL;
|
||||
GstDebugCategory *GST_CAT_EVENT = NULL;
|
||||
GstDebugCategory *GST_CAT_MESSAGE = NULL;
|
||||
GstDebugCategory *GST_CAT_PARAMS = NULL;
|
||||
GstDebugCategory *GST_CAT_CALL_TRACE = NULL;
|
||||
GstDebugCategory *GST_CAT_SIGNAL = NULL;
|
||||
GstDebugCategory *GST_CAT_PROBE = NULL;
|
||||
GstDebugCategory *GST_CAT_REGISTRY = NULL;
|
||||
GstDebugCategory *GST_CAT_QOS = NULL;
|
||||
|
||||
GstDebugCategory *
|
||||
_gst_debug_category_new (const gchar * name, guint color,
|
||||
const gchar * description)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void
|
||||
_gst_debug_register_funcptr (gpointer func, const gchar * ptrname)
|
||||
{
|
||||
}
|
||||
|
||||
/* This function MUST NOT return NULL */
|
||||
const gchar *
|
||||
_gst_debug_nameof_funcptr (gpointer func)
|
||||
{
|
||||
return "(NULL)";
|
||||
}
|
||||
|
||||
void
|
||||
gst_debug_log (GstDebugCategory * category, GstDebugLevel level,
|
||||
const gchar * file, const gchar * function, gint line,
|
||||
|
|
Loading…
Reference in a new issue