mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
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.
This commit is contained in:
parent
c47f0f2ec5
commit
748690aba1
1 changed files with 6 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue