diff options
author | David Schleef <ds@schleef.org> | 2005-09-15 20:56:30 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2005-09-15 20:56:30 +0000 |
commit | a08786c39143a92e31a351efb0ffbd727247e86f (patch) | |
tree | 825e4838b6523a9a0a545288018830634cdb4e29 /gst/gstplugin.h | |
parent | 269ec283eb5329f1db43442a22e865b2c4de69e7 (diff) |
gst/gstplugin.c: Implement semi-decent recounting and locking in plugins and plugin features.
Original commit message from CVS:
* gst/gstplugin.c: Implement semi-decent recounting and locking
in plugins and plugin features.
* gst/gstplugin.h:
* gst/gstpluginfeature.c:
* gst/gstpluginfeature.h:
* gst/gstregistry.c:
Diffstat (limited to 'gst/gstplugin.h')
-rw-r--r-- | gst/gstplugin.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/gstplugin.h b/gst/gstplugin.h index 0298acc87..bfae206c4 100644 --- a/gst/gstplugin.h +++ b/gst/gstplugin.h @@ -29,6 +29,7 @@ #include <gmodule.h> #include <gst/gstpluginfeature.h> #include <gst/gstmacros.h> +#include <gst/gstobject.h> G_BEGIN_DECLS @@ -79,7 +80,7 @@ struct _GstPluginDesc { struct _GstPlugin { - GObject object; + GstObject object; GstPluginDesc desc; @@ -100,7 +101,7 @@ struct _GstPlugin { }; struct _GstPluginClass { - GObjectClass object_class; + GstObjectClass object_class; }; |