mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
gst/: privatize more symbols
Original commit message from CVS: * gst/gstinfo.c: * gst/gstpluginfeature.c: * gst/gsttask.c: privatize more symbols
This commit is contained in:
parent
4beb1c4224
commit
92f4901b64
4 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
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>
|
2005-10-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -112,7 +112,7 @@
|
||||||
/* underscore is to prevent conflict with GST_CAT_DEBUG define */
|
/* underscore is to prevent conflict with GST_CAT_DEBUG define */
|
||||||
GST_DEBUG_CATEGORY_STATIC (_GST_CAT_DEBUG);
|
GST_DEBUG_CATEGORY_STATIC (_GST_CAT_DEBUG);
|
||||||
/* time of initialization, so we get useful debugging output times */
|
/* time of initialization, so we get useful debugging output times */
|
||||||
GstClockTime start_time;
|
static GstClockTime start_time;
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
#if defined __sgi__
|
#if defined __sgi__
|
||||||
|
|
|
@ -46,7 +46,7 @@ static void gst_plugin_feature_finalize (GObject * object);
|
||||||
/* static guint gst_plugin_feature_signals[LAST_SIGNAL] = { 0 }; */
|
/* static guint gst_plugin_feature_signals[LAST_SIGNAL] = { 0 }; */
|
||||||
|
|
||||||
G_DEFINE_ABSTRACT_TYPE (GstPluginFeature, gst_plugin_feature, GST_TYPE_OBJECT);
|
G_DEFINE_ABSTRACT_TYPE (GstPluginFeature, gst_plugin_feature, GST_TYPE_OBJECT);
|
||||||
GstObjectClass *parent_class = NULL;
|
static GstObjectClass *parent_class = NULL;
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_plugin_feature_class_init (GstPluginFeatureClass * klass)
|
gst_plugin_feature_class_init (GstPluginFeatureClass * klass)
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include "gstinfo.h"
|
#include "gstinfo.h"
|
||||||
#include "gsttask.h"
|
#include "gsttask.h"
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY (task_debug);
|
GST_DEBUG_CATEGORY_STATIC (task_debug);
|
||||||
#define GST_CAT_DEFAULT (task_debug)
|
#define GST_CAT_DEFAULT (task_debug)
|
||||||
|
|
||||||
static void gst_task_class_init (GstTaskClass * klass);
|
static void gst_task_class_init (GstTaskClass * klass);
|
||||||
|
|
Loading…
Reference in a new issue