Added code to force the gsttypes plugin to load before gstelements, by simply having...
[platform/upstream/gstreamer.git] / plugins / elements / gstelements.c
1 /* Gnome-Streamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20
21 #include <gst/gst.h>
22
23 #include <gstasyncdisksrc.h>
24 #include <gstaudiosink.h>
25 #include <gstaudiosrc.h>
26 #include <gstdisksrc.h>
27 #include <gstidentity.h>
28 #include <gstfakesink.h>
29 #include <gstfakesrc.h>
30 #include <gstfdsink.h>
31 #include <gstfdsrc.h>
32 #if HAVE_LIBGHTTP
33 #include <gsthttpsrc.h>
34 #endif /* HAVE_LIBGHTTP */
35 #include <gstpipefilter.h>
36 #include <gstqueue.h>
37 #include <gstsinesrc.h>
38 #include <gsttypefind.h>
39
40
41 struct _elements_entry {
42   gchar *name;
43   GtkType (*type) (void);
44   GstElementDetails *details;
45   gboolean (*factoryinit) (GstElementFactory *factory);
46 };
47
48 struct _elements_entry _elements[] = {
49   { "fakesrc", gst_fakesrc_get_type, &gst_fakesrc_details, NULL },
50   { "fakesink", gst_fakesink_get_type, &gst_fakesink_details, NULL },
51   { "asyncdisksrc", gst_asyncdisksrc_get_type, &gst_asyncdisksrc_details, NULL },
52   { "audiosink", gst_audiosink_get_type, &gst_audiosink_details, gst_audiosink_factory_init },
53   { "audiosrc", gst_audiosrc_get_type, &gst_audiosrc_details, NULL },
54   { "disksrc", gst_disksrc_get_type, &gst_disksrc_details, NULL },
55   { "identity", gst_identity_get_type, &gst_identity_details, NULL },
56   { "fdsink", gst_fdsink_get_type, &gst_fdsink_details, NULL },
57   { "fdsrc", gst_fdsrc_get_type, &gst_fdsrc_details, NULL },
58 #if HAVE_LIBGHTTP
59   { "httpsrc", gst_httpsrc_get_type, &gst_httpsrc_details, NULL },
60 #endif /* HAVE_LIBGHTTP */
61   { "pipefilter", gst_pipefilter_get_type, &gst_pipefilter_details, NULL },
62   { "queue", gst_queue_get_type, &gst_queue_details, NULL },
63   { "sinesrc", gst_sinesrc_get_type, &gst_sinesrc_details, NULL },
64   { "typefind", gst_typefind_get_type, &gst_typefind_details, NULL },
65   { NULL, 0 },
66 };
67
68 GstPlugin *plugin_init(GModule *module) {
69   GstPlugin *plugin;
70   GstElementFactory *factory;
71   int i = 0;
72
73   /* we depend on having the usual types loaded first */
74   gst_plugin_load("gsttypes");
75
76   plugin = gst_plugin_new("gstelements");
77   g_return_val_if_fail(plugin != NULL,NULL);
78
79   gst_plugin_set_longname(plugin,"Standard GST Elements");
80
81   while (_elements[i].name) {
82     factory = gst_elementfactory_new(_elements[i].name,
83                                      (_elements[i].type)(),
84                                      _elements[i].details);
85     if (factory != NULL) {
86       gst_plugin_add_factory(plugin,factory);
87       if (_elements[i].factoryinit) {
88         _elements[i].factoryinit(factory);
89       }
90 //      g_print("added factory '%s'\n",_elements[i].name);
91     }
92     i++;
93   }
94
95   gst_info("gstelements: loaded %d standard elements\n",i);
96
97   return plugin;
98 }