gst/: privatize more symbols
authorThomas Vander Stichele <thomas@apestaart.org>
Sat, 15 Oct 2005 19:57:03 +0000 (19:57 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sat, 15 Oct 2005 19:57:03 +0000 (19:57 +0000)
Original commit message from CVS:

* gst/gstinfo.c:
* gst/gstpluginfeature.c:
* gst/gsttask.c:
privatize more symbols

ChangeLog
gst/gstinfo.c
gst/gstpluginfeature.c
gst/gsttask.c

index 6d656f3..27bf684 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
 
+       * gst/gstinfo.c:
+       * gst/gstpluginfeature.c:
+       * gst/gsttask.c:
+         privatize more symbols
+
+2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
+
        * configure.ac:
          add srcdir, builddir includes to GST_ALL_CFLAGS, since
          everything that uses GStreamer API should have the includes
index 48ce5b2..1a0d09a 100644 (file)
 /* underscore is to prevent conflict with GST_CAT_DEBUG define */
 GST_DEBUG_CATEGORY_STATIC (_GST_CAT_DEBUG);
 /* time of initialization, so we get useful debugging output times */
-GstClockTime start_time;
+static GstClockTime start_time;
 
 #if 0
 #if defined __sgi__
index 1a0ea92..01c28b5 100644 (file)
@@ -46,7 +46,7 @@ static void gst_plugin_feature_finalize (GObject * object);
 /* static guint gst_plugin_feature_signals[LAST_SIGNAL] = { 0 }; */
 
 G_DEFINE_ABSTRACT_TYPE (GstPluginFeature, gst_plugin_feature, GST_TYPE_OBJECT);
-GstObjectClass *parent_class = NULL;
+static GstObjectClass *parent_class = NULL;
 
 static void
 gst_plugin_feature_class_init (GstPluginFeatureClass * klass)
index 7fb0739..a112054 100644 (file)
@@ -25,7 +25,7 @@
 #include "gstinfo.h"
 #include "gsttask.h"
 
-GST_DEBUG_CATEGORY (task_debug);
+GST_DEBUG_CATEGORY_STATIC (task_debug);
 #define GST_CAT_DEFAULT (task_debug)
 
 static void gst_task_class_init (GstTaskClass * klass);