Header cleanup: try to include as little as possible; this will probably speed up...
[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 static 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   
66   { NULL, 0 },
67 };
68
69 GstPlugin *plugin_init (GModule *module) 
70 {
71   GstPlugin *plugin;
72   GstElementFactory *factory;
73   gint i = 0;
74
75   plugin = gst_plugin_new("gstelements");
76   g_return_val_if_fail(plugin != NULL,NULL);
77
78   gst_plugin_set_longname (plugin, "Standard GST Elements");
79
80   while (_elements[i].name) {
81     factory = gst_elementfactory_new (_elements[i].name,
82                                       (_elements[i].type) (),
83                                       _elements[i].details);
84     if (factory != NULL) {
85       gst_plugin_add_factory (plugin, factory);
86       if (_elements[i].factoryinit) {
87         _elements[i].factoryinit (factory);
88       }
89 //      g_print("added factory '%s'\n",_elements[i].name);
90     }
91     i++;
92   }
93
94   gst_info ("gstelements: loaded %d standard elements\n", i);
95
96   return plugin;
97 }