gstfunnel: avoid access of freed pad
[platform/upstream/gstreamer.git] / gst / gstregistry.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wim.taymans@chello.be>
4  *
5  * gstregistry.h: Header for registry handling
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 #ifndef __GST_REGISTRY_H__
25 #define __GST_REGISTRY_H__
26
27 #include <gst/gstconfig.h>
28 #include <gst/gstplugin.h>
29 #include <gst/gstpluginfeature.h>
30
31 G_BEGIN_DECLS
32
33 #define GST_TYPE_REGISTRY               (gst_registry_get_type ())
34 #define GST_REGISTRY(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_REGISTRY, GstRegistry))
35 #define GST_IS_REGISTRY(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_REGISTRY))
36 #define GST_REGISTRY_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_REGISTRY, GstRegistryClass))
37 #define GST_IS_REGISTRY_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_REGISTRY))
38 #define GST_REGISTRY_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_REGISTRY, GstRegistryClass))
39
40 typedef struct _GstRegistry GstRegistry;
41 typedef struct _GstRegistryClass GstRegistryClass;
42 typedef struct _GstRegistryPrivate GstRegistryPrivate;
43
44 /**
45  * GstRegistry:
46  *
47  * Opaque #GstRegistry structure.
48  */
49 struct _GstRegistry {
50   GstObject      object;
51
52   /*< private >*/
53   GstRegistryPrivate *priv;
54 };
55
56 struct _GstRegistryClass {
57   GstObjectClass        parent_class;
58 };
59
60 GType                   gst_registry_get_type           (void);
61
62 GstRegistry *           gst_registry_get                (void);
63
64 gboolean                gst_registry_scan_path          (GstRegistry *registry, const gchar *path);
65 void                    gst_registry_add_path           (GstRegistry * registry, const gchar * path);
66 GList*                  gst_registry_get_path_list      (GstRegistry *registry);
67
68 gboolean                gst_registry_add_plugin         (GstRegistry *registry, GstPlugin *plugin);
69 void                    gst_registry_remove_plugin      (GstRegistry *registry, GstPlugin *plugin);
70 gboolean                gst_registry_add_feature        (GstRegistry * registry, GstPluginFeature * feature);
71 void                    gst_registry_remove_feature     (GstRegistry * registry, GstPluginFeature * feature);
72
73 GList*                  gst_registry_get_plugin_list    (GstRegistry *registry);
74 GList*                  gst_registry_plugin_filter      (GstRegistry *registry,
75                                                          GstPluginFilter filter,
76                                                          gboolean first,
77                                                          gpointer user_data);
78 GList*                  gst_registry_feature_filter     (GstRegistry *registry,
79                                                          GstPluginFeatureFilter filter,
80                                                          gboolean first,
81                                                          gpointer user_data);
82 GList *                 gst_registry_get_feature_list   (GstRegistry *registry,
83                                                          GType type);
84 GList *                 gst_registry_get_feature_list_by_plugin (GstRegistry *registry, const gchar *name);
85 guint32                 gst_registry_get_feature_list_cookie (GstRegistry *registry);
86
87 GstPlugin*              gst_registry_find_plugin        (GstRegistry *registry, const gchar *name);
88 GstPluginFeature*       gst_registry_find_feature       (GstRegistry *registry, const gchar *name, GType type);
89
90 GstPlugin *             gst_registry_lookup             (GstRegistry *registry, const char *filename);
91 GstPluginFeature *      gst_registry_lookup_feature     (GstRegistry *registry, const char *name);
92
93 gboolean                gst_registry_check_feature_version (GstRegistry *registry,
94                                                             const gchar *feature_name,
95                                                             guint        min_major,
96                                                             guint        min_minor,
97                                                             guint        min_micro);
98
99 G_END_DECLS
100
101 #endif /* __GST_REGISTRY_H__ */
102