2 * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3 * 2000 Wim Taymans <wtay@chello.be>
5 * gst.h: Main header for GStreamer, apps should include this
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.
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.
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.
29 #include <gst/glib-compat.h>
31 #include <gst/gstenumtypes.h>
32 #include <gst/gstversion.h>
34 #include <gst/gstbin.h>
35 #include <gst/gstbuffer.h>
36 #include <gst/gstbufferlist.h>
37 #include <gst/gstbufferpool.h>
38 #include <gst/gstcaps.h>
39 #include <gst/gstchildproxy.h>
40 #include <gst/gstclock.h>
41 #include <gst/gstcontrolsource.h>
42 #include <gst/gstdatetime.h>
43 #include <gst/gstdebugutils.h>
44 #include <gst/gstelement.h>
45 #include <gst/gstelementmetadata.h>
46 #include <gst/gsterror.h>
47 #include <gst/gstevent.h>
48 #include <gst/gstghostpad.h>
49 #include <gst/gstinfo.h>
50 #include <gst/gstiterator.h>
51 #include <gst/gstmessage.h>
52 #include <gst/gstmemory.h>
53 #include <gst/gstmeta.h>
54 #include <gst/gstminiobject.h>
55 #include <gst/gstobject.h>
56 #include <gst/gstpad.h>
57 #include <gst/gstparamspecs.h>
58 #include <gst/gstpipeline.h>
59 #include <gst/gstplugin.h>
60 #include <gst/gstpoll.h>
61 #include <gst/gstpreset.h>
62 #include <gst/gstquery.h>
63 #include <gst/gstregistry.h>
64 #include <gst/gstsample.h>
65 #include <gst/gstsegment.h>
66 #include <gst/gststructure.h>
67 #include <gst/gstsystemclock.h>
68 #include <gst/gsttaglist.h>
69 #include <gst/gsttagsetter.h>
70 #include <gst/gsttask.h>
71 #include <gst/gsttaskpool.h>
72 #include <gst/gsttoc.h>
73 #include <gst/gsttocsetter.h>
74 #include <gst/gsttypefind.h>
75 #include <gst/gsttypefindfactory.h>
76 #include <gst/gsturi.h>
77 #include <gst/gstutils.h>
78 #include <gst/gstvalue.h>
80 #include <gst/gstparse.h>
82 /* API compatibility stuff */
83 #include <gst/gstcompat.h>
87 void gst_init (int *argc, char **argv[]);
88 gboolean gst_init_check (int *argc, char **argv[],
90 gboolean gst_is_initialized (void);
91 GOptionGroup * gst_init_get_option_group (void);
92 void gst_deinit (void);
94 void gst_version (guint *major, guint *minor,
95 guint *micro, guint *nano);
96 gchar * gst_version_string (void);
98 gboolean gst_segtrap_is_enabled (void);
99 void gst_segtrap_set_enabled (gboolean enabled);
101 gboolean gst_registry_fork_is_enabled (void);
102 void gst_registry_fork_set_enabled (gboolean enabled);
104 gboolean gst_update_registry (void);
108 #endif /* __GST_H__ */