]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - gst/gst.h
check/Makefile.am: remove GstData checks
[glsdk/gstreamer0-10.git] / gst / gst.h
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gst.h: Main header for GStreamer, apps should include this
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  */
24 #ifndef __GST_H__
25 #define __GST_H__
27 #include <glib.h>
28 #include <popt.h>
30 #include <gst/gstenumtypes.h>
31 #include <gst/gsttypes.h>
32 #include <gst/gstversion.h>
34 #include <gst/gstbin.h>
35 #include <gst/gstbuffer.h>
36 #include <gst/gstcaps.h>
37 #include <gst/gstclock.h>
38 #include <gst/gstelement.h>
39 #include <gst/gsterror.h>
40 #include <gst/gstevent.h>
41 #include <gst/gstindex.h>
42 #include <gst/gstinfo.h>
43 #include <gst/gstinterface.h>
44 #include <gst/gstiterator.h>
45 #include <gst/gstmarshal.h>
46 #include <gst/gstmessage.h>
47 #include <gst/gstminiobject.h>
48 #include <gst/gstobject.h>
49 #include <gst/gstpad.h>
50 #include <gst/gstpipeline.h>
51 #include <gst/gstplugin.h>
52 #include <gst/gstquery.h>
53 #include <gst/gstqueryutils.h>
54 #include <gst/gstscheduler.h>
55 #include <gst/gststructure.h>
56 #include <gst/gstsystemclock.h>
57 #include <gst/gsttag.h>
58 #include <gst/gsttaginterface.h>
59 #include <gst/gsttask.h>
60 #include <gst/gsttrace.h>
61 #include <gst/gsttypefind.h>
62 #include <gst/gsturi.h>
63 #include <gst/gsturitype.h>
64 #include <gst/gstutils.h>
65 #include <gst/gstvalue.h>
66 #include <gst/gstxml.h>
68 #include <gst/gstparse.h>
69 #include <gst/gstregistry.h>
70 #include <gst/gstregistrypool.h>
72 /* API compatibility stuff */
73 #include <gst/gstcompat.h>
75 G_BEGIN_DECLS
77 /* make our own type for poptOption because gtkdoc-1.2 can not handle functions
78  * with return types like 'struct abc'
79  * Filed as http://bugzilla.gnome.org/show_bug.cgi?id=148507
80  *
81  * Btw. popt provides a typedef, but it is:
82  * typedef struct poptOption *poptOption
83  */
84 typedef struct poptOption GstPoptOption;
86 #ifndef GST_DISABLE_REGISTRY
87 GST_EXPORT gboolean _gst_registry_auto_load;
88 #endif
90 /* initialize GST */
91 void            gst_init                        (int *argc, char **argv[]);
92 gboolean        gst_init_check                  (int *argc, char **argv[]);
93 void            gst_init_with_popt_table        (int *argc, char **argv[],
94                                                  const GstPoptOption
95                                                  *popt_options);
96 gboolean        gst_init_check_with_popt_table  (int *argc, char **argv[],
97                                                  const GstPoptOption
98                                                  *popt_options);
100 const GstPoptOption *   gst_init_get_popt_table         (void);
102 G_END_DECLS
104 #endif /* __GST_H__ */