Update to note that plugins can also contain autopluggers.
authorRichard Boulton <richard@tartarus.org>
Sat, 17 Mar 2001 17:50:35 +0000 (17:50 +0000)
committerRichard Boulton <richard@tartarus.org>
Sat, 17 Mar 2001 17:50:35 +0000 (17:50 +0000)
Original commit message from CVS:
Update to note that plugins can also contain autopluggers.

docs/manual/plugins.sgml

index 6d082d0..a89d9cb 100644 (file)
         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 */
 };