mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
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:
parent
bd08cdd276
commit
93c01d268f
1 changed files with 7 additions and 0 deletions
|
@ -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 */
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue