separated the properties from the capabilities as we might use the properties for...
[platform/upstream/gstreamer.git] / gst / gstcaps.h
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 #ifndef __GST_CAPS_H__
22 #define __GST_CAPS_H__
23
24 #include <glib.h>
25 #include <gst/gstprops.h>
26
27 typedef struct _GstCaps GstCaps;
28 typedef gpointer GstCapsFactoryEntry;
29 typedef GstCapsFactoryEntry GstCapsFactory[];
30 typedef GstCapsFactory *GstCapsListFactory[];
31
32 struct _GstCaps {
33   guint16 id;                   /* type id (major type) */
34
35   GstProps *properties;         /* properties for this capability */
36 };
37
38 /* initialize the subsystem */
39 void            _gst_caps_initialize            (void);
40
41 GstCaps*        gst_caps_register               (GstCapsFactory factory);
42
43 void            gst_caps_dump                   (GstCaps *caps);
44
45 gboolean        gst_caps_check_compatibility    (GstCaps *caps1, GstCaps *caps2);
46
47 #endif /* __GST_CAPS_H__ */