gst/gstconfig.h.in: Psych out gtk-doc.
[platform/upstream/gstreamer.git] / gst / gsttypefindfactory.c
1 /* GStreamer
2  * Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
3  *
4  * gsttypefindfactory.c: typefinding subsystem
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 /**
22  * SECTION:gsttypefindfactory
23  * @short_description: Information about registered typefind functions
24  *
25  * These functions allow querying informations about registered typefind 
26  * functions. How to create and register these functions is described in
27  * the section <link linkend="gstreamer-Writing-typefind-functions">
28  * "Writing typefind functions"</link>.
29  *
30  * <example>
31  *   <title>how to write a simple typefinder</title>
32  *   <programlisting>
33  *   typedef struct {
34  *     guint8 *data;
35  *     guint size;
36  *     guint probability;
37  *     GstCaps *data;
38  *   } MyTypeFind;
39  *   static void
40  *   my_peek (gpointer data, gint64 offset, guint size)
41  *   {
42  *     MyTypeFind *find = (MyTypeFind *) data;
43  *     if (offset &gt;= 0 &amp;&amp; offset + size &lt;= find->size) {
44  *       return find->data + offset;
45  *     }
46  *     return NULL;
47  *   }
48  *   static void
49  *   my_suggest (gpointer data, guint probability, GstCaps *caps)
50  *   {
51  *     MyTypeFind *find = (MyTypeFind *) data;
52  *     if (probability &gt; find->probability) {
53  *       find->probability = probability;
54  *       gst_caps_replace (&amp;find->caps, caps);
55  *     }
56  *   }
57  *   static GstCaps *
58  *   find_type (guint8 *data, guint size)
59  *   {
60  *     GList *walk, *type_list;
61  *     MyTypeFind find = {data, size, 0, NULL};
62  *     GstTypeFind gst_find = {my_peek, my_suggest, &amp;find, };
63  *     
64  *     walk = type_list = gst_type_find_factory_get_list ();
65  *     while (walk) {
66  *       GstTypeFindFactory *factory = GST_TYPE_FIND_FACTORY (walk->data);
67  *       walk = g_list_next (walk)
68  *       gst_type_find_factory_call_function (factory, &amp;gst_find);
69  *     }
70  *     g_list_free (type_list);
71  *     return find.caps;
72  *   };
73  *   </programlisting>
74  * </example>
75  *
76  * The above example shows how to write a very simple typefinder that identifies
77  * the given data. You can get quite a bit more complicated than that though.
78  */
79
80 #include "gst_private.h"
81 #include "gstinfo.h"
82 #include "gsttypefind.h"
83 #include "gsttypefindfactory.h"
84 #include "gstregistry.h"
85
86 GST_DEBUG_CATEGORY (gst_type_find_debug);
87 #define GST_CAT_DEFAULT gst_type_find_debug
88
89 static void gst_type_find_factory_class_init (gpointer g_class,
90     gpointer class_data);
91 static void gst_type_find_factory_init (GTypeInstance * instance,
92     gpointer g_class);
93 static void gst_type_find_factory_dispose (GObject * object);
94
95 static GstPluginFeatureClass *parent_class = NULL;
96
97 GType
98 gst_type_find_factory_get_type (void)
99 {
100   static GType typefind_type = 0;
101
102   if (!typefind_type) {
103     static const GTypeInfo typefind_info = {
104       sizeof (GstTypeFindFactoryClass),
105       NULL,
106       NULL,
107       gst_type_find_factory_class_init,
108       NULL,
109       NULL,
110       sizeof (GstTypeFindFactory),
111       0,
112       gst_type_find_factory_init,
113       NULL
114     };
115
116     typefind_type = g_type_register_static (GST_TYPE_PLUGIN_FEATURE,
117         "GstTypeFindFactory", &typefind_info, 0);
118     GST_DEBUG_CATEGORY_INIT (gst_type_find_debug, "GST_TYPEFIND",
119         GST_DEBUG_FG_GREEN, "typefinding subsystem");
120   }
121
122   return typefind_type;
123 }
124
125 static void
126 gst_type_find_factory_class_init (gpointer g_class, gpointer class_data)
127 {
128   GObjectClass *object_class = G_OBJECT_CLASS (g_class);
129
130   parent_class = g_type_class_peek_parent (g_class);
131
132   object_class->dispose = gst_type_find_factory_dispose;
133 }
134
135 static void
136 gst_type_find_factory_init (GTypeInstance * instance, gpointer g_class)
137 {
138   GstTypeFindFactory *factory = GST_TYPE_FIND_FACTORY (instance);
139
140   factory->user_data = factory;
141 }
142
143 static void
144 gst_type_find_factory_dispose (GObject * object)
145 {
146   GstTypeFindFactory *factory = GST_TYPE_FIND_FACTORY (object);
147
148   if (factory->caps) {
149     gst_caps_unref (factory->caps);
150     factory->caps = NULL;
151   }
152   if (factory->extensions) {
153     g_strfreev (factory->extensions);
154     factory->extensions = NULL;
155   }
156 }
157
158 /**
159  * gst_type_find_factory_get_list:
160  *
161  * Gets the list of all registered typefind factories. You must free the
162  * list using g_list_free.
163  * 
164  * Returns: the list of all registered typefind factories
165  */
166 GList *
167 gst_type_find_factory_get_list (void)
168 {
169   return gst_registry_get_feature_list (gst_registry_get_default (),
170       GST_TYPE_TYPE_FIND_FACTORY);
171 }
172
173 /**
174  * gst_type_find_factory_get_caps:
175  * @factory: a factory
176  * 
177  * Gets the caps associated with a typefind factory.
178  *
179  * Returns: the #GstCaps associated with this factory
180  */
181 GstCaps *
182 gst_type_find_factory_get_caps (GstTypeFindFactory * factory)
183 {
184   g_return_val_if_fail (GST_IS_TYPE_FIND_FACTORY (factory), NULL);
185
186   return factory->caps;
187 }
188
189 /**
190  * gst_type_find_factory_get_extensions:
191  * @factory: a factory
192  * 
193  * Gets the extensions associated with a typefind factory. The returned
194  * array should not be changed. If you need to change stuff in it, you should
195  * copy it using g_stdupv().  This function may return NULL to indicate
196  * a 0-length list.
197  *
198  * Returns: a NULL-terminated array of extensions associated with this factory
199  */
200 gchar **
201 gst_type_find_factory_get_extensions (GstTypeFindFactory * factory)
202 {
203   g_return_val_if_fail (GST_IS_TYPE_FIND_FACTORY (factory), NULL);
204
205   return factory->extensions;
206 }
207
208 /**
209  * gst_type_find_factory_call_function:
210  * @factory: a factory
211  * @find: a properly setup #GstTypeFind entry. The get_data and suggest_type
212  *        members must be set.
213  * 
214  * Calls the typefinding function associated with this factory.
215  */
216 void
217 gst_type_find_factory_call_function (GstTypeFindFactory * factory,
218     GstTypeFind * find)
219 {
220   GstTypeFindFactory *new_factory;
221
222   g_return_if_fail (GST_IS_TYPE_FIND_FACTORY (factory));
223   g_return_if_fail (find != NULL);
224   g_return_if_fail (find->peek != NULL);
225   g_return_if_fail (find->suggest != NULL);
226
227   new_factory =
228       GST_TYPE_FIND_FACTORY (gst_plugin_feature_load (GST_PLUGIN_FEATURE
229           (factory)));
230   if (new_factory) {
231     g_assert (new_factory->function != NULL);
232
233     new_factory->function (find, new_factory->user_data);
234     gst_object_unref (new_factory);
235   }
236 }