GST_DEBUG reorganization containing loads of stuff:
[platform/upstream/gstreamer.git] / plugins / elements / gstelements.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstelements.c:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include <gst/gst.h>
29
30 #include "gstfilesrc.h"
31 #include "gstfilesink.h"
32 #include "gstidentity.h"
33 #include "gstfakesink.h"
34 #include "gstfakesrc.h"
35 #include "gstfdsink.h"
36 #include "gstfdsrc.h"
37 #include "gstmultidisksrc.h"
38 #include "gstpipefilter.h"
39 #include "gsttee.h"
40 #include "gstaggregator.h"
41 #include "gstshaper.h"
42 #include "gststatistics.h"
43 #include "gstmd5sink.h"
44
45
46 struct _elements_entry {
47   gchar *name;
48   GType (*type) (void);
49   GstElementDetails *details;
50   gboolean (*factoryinit) (GstElementFactory *factory);
51 };
52
53
54 extern GType gst_filesrc_get_type(void);
55 extern GstElementDetails gst_filesrc_details;
56
57 static struct _elements_entry _elements[] = {
58   { "fakesrc",      gst_fakesrc_get_type,       &gst_fakesrc_details,           gst_fakesrc_factory_init },
59   { "fakesink",     gst_fakesink_get_type,      &gst_fakesink_details,          gst_fakesink_factory_init },
60   { "filesrc",      gst_filesrc_get_type,       &gst_filesrc_details,           NULL },
61   { "filesink",     gst_filesink_get_type,      &gst_filesink_details,          NULL },
62   { "identity",     gst_identity_get_type,      &gst_identity_details,          NULL },
63   { "fdsink",       gst_fdsink_get_type,        &gst_fdsink_details,            NULL },
64   { "fdsrc",        gst_fdsrc_get_type,         &gst_fdsrc_details,             NULL },
65   { "multidisksrc", gst_multidisksrc_get_type,  &gst_multidisksrc_details,      NULL },
66   { "pipefilter",   gst_pipefilter_get_type,    &gst_pipefilter_details,        NULL },
67   { "tee",          gst_tee_get_type,           &gst_tee_details,               gst_tee_factory_init },
68   { "aggregator",   gst_aggregator_get_type,    &gst_aggregator_details,        gst_aggregator_factory_init },
69   { "shaper",       gst_shaper_get_type,        &gst_shaper_details,            gst_shaper_factory_init },
70   { "statistics",   gst_statistics_get_type,    &gst_statistics_details,        NULL },
71   { "md5sink",      gst_md5sink_get_type,       &gst_md5sink_details,           gst_md5sink_factory_init },
72   { NULL, 0 },
73 };
74
75 static gboolean
76 plugin_init (GModule *module, GstPlugin *plugin)
77 {
78   GstElementFactory *factory;
79   gint i = 0;
80
81   gst_plugin_set_longname (plugin, "Standard GST Elements");
82
83   GST_DEBUG_CATEGORY_INIT (gst_fakesrc_debug,   "fakesrc",      0,      "fakesrc element");
84   GST_DEBUG_CATEGORY_INIT (gst_fakesink_debug,  "fakesink",     0,      "fakesink element");
85   GST_DEBUG_CATEGORY_INIT (gst_filesrc_debug,   "filesrc",      0,      "filesrc element");
86   GST_DEBUG_CATEGORY_INIT (gst_filesink_debug,  "fakesink",     0,      "filesink element");
87   GST_DEBUG_CATEGORY_INIT (gst_identity_debug,  "identity",     0,      "identity element");
88   GST_DEBUG_CATEGORY_INIT (gst_fdsrc_debug,     "fdsrc",        0,      "fdsrc element");
89   GST_DEBUG_CATEGORY_INIT (gst_fdsink_debug,    "fdsink",       0,      "fdsink element");
90   GST_DEBUG_CATEGORY_INIT (gst_multidisksrc_debug, "multidisksrc", 0,   "multidisksrc element");
91   GST_DEBUG_CATEGORY_INIT (gst_pipefilter_debug, "pipefilter",  0,      "pipefilter element");
92   GST_DEBUG_CATEGORY_INIT (gst_tee_debug,       "tee",          0,      "tee element");
93   GST_DEBUG_CATEGORY_INIT (gst_aggregator_debug, "aggregator",  0,      "aggregator element");
94   GST_DEBUG_CATEGORY_INIT (gst_shaper_debug,    "shaper",       0,      "shaper element");
95   GST_DEBUG_CATEGORY_INIT (gst_statistics_debug, "statistics",  0,      "statistics element");
96   GST_DEBUG_CATEGORY_INIT (gst_md5sink_debug,   "md5sink",      0,      "md5sink element");
97
98   while (_elements[i].name) {  
99     factory = gst_element_factory_new (_elements[i].name,
100                                       (_elements[i].type) (),
101                                       _elements[i].details);
102
103     if (!factory)
104       {
105         g_warning ("gst_element_factory_new failed for `%s'",
106                    _elements[i].name);
107         continue;
108       }
109
110     gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
111     if (_elements[i].factoryinit) {
112       _elements[i].factoryinit (factory);
113     }
114 /*      g_print("added factory '%s'\n",_elements[i].name); */
115
116     i++;
117   }
118
119 /*  INFO (GST_INFO_PLUGIN_LOAD,"gstelements: loaded %d standard elements", i);*/
120
121   return TRUE;
122 }
123
124 GstPluginDesc plugin_desc = {
125   GST_VERSION_MAJOR,
126   GST_VERSION_MINOR,
127   "gstelements",
128   plugin_init
129 };