summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2014-07-23 21:27:48 +0200
committerStefan Sauer <ensonic@users.sf.net>2014-07-23 21:30:21 +0200
commit3fbc3d76dc6cf1be6ef7fd9dfa5252b6c892a793 (patch)
tree083b93e4a78e031b8e0de7fa3acb7452794087e4
parentf6e4ca0d2d3f9c2aad773b3d5b196cc112aca253 (diff)
private: allow internal access to the debug base-time
Moving the extern to the head lets us access this from other parts as well. This is neeed in the tracer branch.
-rw-r--r--gst/gst_private.h2
-rw-r--r--gst/gstdebugutils.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/gst_private.h b/gst/gst_private.h
index b25707ce16..aa77cb81ac 100644
--- a/gst/gst_private.h
+++ b/gst/gst_private.h
@@ -244,6 +244,8 @@ GST_EXPORT GstDebugCategory *GST_CAT_CONTEXT;
#define GST_CAT_POLL _priv_GST_CAT_POLL
extern GstDebugCategory *_priv_GST_CAT_POLL;
+extern GstClockTime _priv_gst_info_start_time;
+
#else
#define GST_CAT_GST_INIT NULL
diff --git a/gst/gstdebugutils.c b/gst/gstdebugutils.c
index 96901c3508..d8fa2df6eb 100644
--- a/gst/gstdebugutils.c
+++ b/gst/gstdebugutils.c
@@ -63,8 +63,6 @@ const gchar spaces[] = {
" " /* 128 */
};
-extern GstClockTime _priv_gst_info_start_time;
-
static gchar *
debug_dump_make_object_name (GstObject * obj)
{