gstconfig.h.in: indent #if #else jungle for better readability
[platform/upstream/gstreamer.git] / gst / gstconfig.h.in
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *               2004,2005 Wim Taymans <wim@fluendo.com>
4  *
5  * gstconfig.h: GST_DISABLE_* macros for build configuration
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., 51 Franklin St, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 /**
24  * SECTION:gstconfig
25  * @short_description: Build configuration options
26  *
27  * This describes the configuration options for GStreamer. When building
28  * GStreamer there are a lot of parts (known internally as "subsystems" ) that
29  * can be disabled for various reasons. The most common reasons are speed and
30  * size, which is important because GStreamer is designed to run on embedded
31  * systems.
32  *
33  * If a subsystem is disabled, most of this changes are done in an API
34  * compatible way, so you don't need to adapt your code in most cases. It is
35  * never done in an ABI compatible way though. So if you want to disable a
36  * subsystem, you have to rebuild all programs depending on GStreamer, too.
37  *
38  * If a subsystem is disabled in GStreamer, a value is defined in
39  * &lt;gst/gst.h&gt;. You can check this if you do subsystem-specific stuff.
40  * <example id="example-gstconfig">
41  * <title>Doing subsystem specific things</title>
42  * <programlisting>
43  * &hash;ifndef GST_DISABLE_GST_DEBUG
44  * // do stuff specific to the debugging subsystem
45  * &hash;endif // GST_DISABLE_GST_DEBUG
46  * </programlisting>
47  * </example>
48  */
49
50 #ifndef __GST_CONFIG_H__
51 #define __GST_CONFIG_H__
52
53 /* trick gtk-doc into believing these symbols are defined (yes, it's ugly) */
54
55 #if 0
56 #define GST_DISABLE_GST_DEBUG 1
57 #define GST_DISABLE_PARSE 1
58 #define GST_DISABLE_TRACE 1
59 #define GST_DISABLE_ALLOC_TRACE 1
60 #define GST_DISABLE_REGISTRY 1
61 #define GST_DISABLE_PLUGIN 1
62 #define GST_HAVE_GLIB_2_8 1
63 #endif
64
65 /***** default padding of structures *****/
66 #define GST_PADDING             4
67 #define GST_PADDING_INIT        { NULL }
68
69 /***** padding for very extensible base classes *****/
70 #define GST_PADDING_LARGE       20
71
72 /***** disabling of subsystems *****/
73
74 /**
75  * GST_DISABLE_GST_DEBUG:
76  *
77  * Configures the inclusion of the debugging subsystem
78  */
79 @GST_DISABLE_GST_DEBUG_DEFINE@
80
81 /**
82  * GST_DISABLE_PARSE:
83  *
84  * Configures the inclusion of the gst-launch parser
85  */
86 @GST_DISABLE_PARSE_DEFINE@
87
88 /**
89  * GST_DISABLE_TRACE:
90  *
91  * Configures the inclusion of a resource tracing facility
92  * (seems to be unused)
93  */
94 @GST_DISABLE_TRACE_DEFINE@
95
96 /**
97  * GST_DISABLE_ALLOC_TRACE:
98  *
99  * Configures the use of a memory tracer based on the resource tracer
100  * if TRACE is disabled, ALLOC_TRACE is disabled as well
101  */
102 @GST_DISABLE_ALLOC_TRACE_DEFINE@
103
104 /**
105  * GST_DISABLE_REGISTRY:
106  *
107  * Configures the use of the plugin registry.
108  * If one disables this, required plugins need to be loaded and registered
109  * manually
110  */
111 @GST_DISABLE_REGISTRY_DEFINE@
112
113 /* FIXME: test and document these! */
114 /* Configures the use of external plugins */
115 @GST_DISABLE_PLUGIN_DEFINE@
116
117 /* whether or not the CPU supports unaligned access */
118 @GST_HAVE_UNALIGNED_ACCESS_DEFINE@
119
120 /**
121  * GST_EXPORT:
122  *
123  * Export the given variable from the built shared object.
124  *
125  * On Windows, this exports the variable from the DLL.
126  * On other platforms, this gets defined to "extern".
127  */
128 /**
129  * GST_PLUGIN_EXPORT:
130  *
131  * Export the plugin's definition.
132  *
133  * On Windows, this exports the plugin definition from the DLL.
134  * On other platforms, this gets defined as a no-op.
135  */
136 #ifdef _WIN32 /* Both 32-bit and 64-bit; both GCC and MSVC */
137 # define GST_PLUGIN_EXPORT __declspec(dllexport) extern
138 # ifdef GST_EXPORTS
139 #  define GST_EXPORT __declspec(dllexport) extern
140 # else
141 #  define GST_EXPORT __declspec(dllimport) extern
142 # endif
143 #else /* !_WIN32 */
144 # define GST_PLUGIN_EXPORT
145 # if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
146 #  define GST_EXPORT extern __attribute__ ((visibility ("default")))
147 # else
148 #  define GST_EXPORT extern
149 # endif
150 #endif
151
152 #endif /* __GST_CONFIG_H__ */