initial checkin
[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 #include <gsthttpsrc.h>
33 #include <gstqueue.h>
34 #include <gstsinesrc.h>
35
36
37 struct _elements_entry {
38   gchar *name;
39   GtkType (*type) (void);
40   GstElementDetails *details;
41 };
42
43 struct _elements_entry _elements[] = {
44   { "asyncdisksrc", gst_asyncdisksrc_get_type, &gst_asyncdisksrc_details },
45   { "audiosink", gst_audiosink_get_type, &gst_audiosink_details },
46   { "audiosrc", gst_audiosrc_get_type, &gst_audiosrc_details },
47   { "disksrc", gst_disksrc_get_type, &gst_disksrc_details },
48   { "identity", gst_identity_get_type, &gst_identity_details },
49   { "fakesink", gst_fakesink_get_type, &gst_fakesink_details },
50   { "fakesrc", gst_fakesrc_get_type, &gst_fakesrc_details },
51   { "fdsink", gst_fdsink_get_type, &gst_fdsink_details },
52   { "fdsrc", gst_fdsrc_get_type, &gst_fdsrc_details },
53   { "httpsrc", gst_httpsrc_get_type, &gst_httpsrc_details },
54   { "queue", gst_queue_get_type, &gst_queue_details },
55   { "sinesrc", gst_sinesrc_get_type, &gst_sinesrc_details },
56   { NULL, 0 },
57 };
58
59 GstPlugin *plugin_init(GModule *module) {
60   GstPlugin *plugin;
61   GstElementFactory *factory;
62   int i = 0;
63
64   if (gst_plugin_find("gstelements") != NULL) return NULL;
65
66   plugin = gst_plugin_new("gstelements");
67   g_return_val_if_fail(plugin != NULL,NULL);
68
69   gst_plugin_set_longname(plugin,"Standard GST Elements");
70
71   while (_elements[i].name) {
72     factory = gst_elementfactory_new(_elements[i].name,
73                                      (_elements[i].type)(),
74                                      _elements[i].details);
75     if (factory != NULL) {
76       gst_plugin_add_factory(plugin,factory);
77 //      DEBUG("added factory '%s'\n",_elements[i].name);
78     }
79     i++;
80   }
81
82   gst_info("gstelements: loaded %d standard elements\n",i);
83
84   return plugin;
85 }