fix doc build fix autogen
[platform/upstream/gstreamer.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  */
22
23
24 #ifndef __GST_H__
25 #define __GST_H__
26
27 #include <glib.h>
28 #include <popt.h>
29
30 #include <gst/gstenumtypes.h>
31 #include <gst/gsttypes.h>
32 #include <gst/gstversion.h>
33
34 #include <gst/gstbin.h>
35 #include <gst/gstbuffer.h>
36 #include <gst/gstcaps.h>
37 #include <gst/gstclock.h>
38 #include <gst/gstcpu.h>
39 #include <gst/gstelement.h>
40 #include <gst/gsterror.h>
41 #include <gst/gstevent.h>
42 #include <gst/gstindex.h>
43 #include <gst/gstinfo.h>
44 #include <gst/gstinterface.h>
45 #include <gst/gstobject.h>
46 #include <gst/gstpad.h>
47 #include <gst/gstpipeline.h>
48 #include <gst/gstplugin.h>
49 #include <gst/gstscheduler.h>
50 #include <gst/gststructure.h>
51 #include <gst/gstsystemclock.h>
52 #include <gst/gsttag.h>
53 #include <gst/gsttaginterface.h>
54 #include <gst/gstthread.h>
55 #include <gst/gsttrace.h>
56 #include <gst/gsttypefind.h>
57 #include <gst/gsturi.h>
58 #include <gst/gsturitype.h>
59 #include <gst/gstutils.h>
60 #include <gst/gstvalue.h>
61 #include <gst/gstxml.h>
62
63 #include <gst/gstparse.h>
64 #include <gst/gstregistry.h>
65 #include <gst/gstregistrypool.h>
66
67 /* API compatibility stuff */
68 #include <gst/gstcompat.h>
69
70 G_BEGIN_DECLS
71
72 /* initialize GST */
73 void            gst_init                        (int *argc, char **argv[]);
74 gboolean        gst_init_check                  (int *argc, char **argv[]);
75 void            gst_init_with_popt_table        (int *argc, char **argv[],
76                                                  const struct poptOption
77                                                  *popt_options);
78 gboolean        gst_init_check_with_popt_table  (int *argc, char **argv[],
79                                                  const struct poptOption
80                                                  *popt_options);
81 G_CONST_RETURN struct poptOption*
82                 gst_init_get_popt_table         (void);
83
84 void            gst_use_threads                 (gboolean use_threads);
85 gboolean        gst_has_threads                 (void);
86
87 void            gst_main                        (void);
88 void            gst_main_quit                   (void);
89
90 G_END_DECLS
91
92 #include <gst/gstlog.h>
93
94 #endif /* __GST_H__ */