Update to note that plugins can also contain autopluggers.

Original commit message from CVS:
Update to note that plugins can also contain autopluggers.
This commit is contained in:
Richard Boulton 2001-03-17 17:50:35 +00:00
parent bd08cdd276
commit 93c01d268f

View file

@ -15,6 +15,11 @@
one or more typedefinitions
</para>
</listitem>
<listitem>
<para>
one or more autopluggers
</para>
</listitem>
</itemizedlist>
<para>
The plugins have one simple method: plugin_init () where all the elementfactories are
@ -39,6 +44,8 @@ struct _GstPlugin {
gint numtypes;
GList *elements; /* list of elements provided */
gint numelements;
GList *autopluggers; /* list of autopluggers provided */
gint numautopluggers;
gboolean loaded; /* if the plugin is in memory */
};