From 748690aba17a1163eee4ffbe24072babe353c156 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 14 Jan 2014 13:42:20 +0100 Subject: [PATCH] parse: Add comment about why we disable the "tracing" It did not print anything useful before anyway, everything was commented out. Also remove some unneeded struct members. --- gst/parse/types.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gst/parse/types.h b/gst/parse/types.h index e3e541d789..16f04b7fcb 100644 --- a/gst/parse/types.h +++ b/gst/parse/types.h @@ -21,8 +21,6 @@ typedef struct { GSList *elements; reference_t first; reference_t last; - //link_t *front; - //link_t *back; } chain_t; typedef struct _graph_t graph_t; @@ -40,10 +38,14 @@ struct _graph_t { * doesn't really work. * This is not safe from reentrance issues, but that doesn't matter as long as * we lock a mutex before parsing anyway. + * + * FIXME: Disable this for now for the above reasons */ -//#ifdef GST_DEBUG_ENABLED +#if 0 +#ifdef GST_DEBUG_ENABLED # define __GST_PARSE_TRACE -//#endif +#endif +#endif #ifdef __GST_PARSE_TRACE G_GNUC_INTERNAL gchar *__gst_parse_strdup (gchar *org);