2005-08-30 08:17:48 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2004,2005 Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
|
|
|
* gstconfig.h: GST_DISABLE_* macros for build configuration
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2005-08-30 08:17:48 +00:00
|
|
|
*/
|
2005-10-12 19:14:23 +00:00
|
|
|
|
2005-08-30 08:17:48 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstconfig
|
|
|
|
* @short_description: Build configuration options
|
|
|
|
*
|
2005-10-15 16:01:57 +00:00
|
|
|
* This describes the configuration options for GStreamer. When building
|
2005-10-12 19:14:23 +00:00
|
|
|
* GStreamer there are a lot of parts (known internally as "subsystems" ) that
|
|
|
|
* can be disabled for various reasons. The most common reasons are speed and
|
|
|
|
* size, which is important because GStreamer is designed to run on embedded
|
|
|
|
* systems.
|
|
|
|
*
|
|
|
|
* If a subsystem is disabled, most of this changes are done in an API
|
|
|
|
* compatible way, so you don't need to adapt your code in most cases. It is
|
|
|
|
* never done in an ABI compatible way though. So if you want to disable a
|
2013-12-07 14:38:19 +00:00
|
|
|
* subsystem, you have to rebuild all programs depending on GStreamer, too.
|
2005-10-15 16:01:57 +00:00
|
|
|
*
|
|
|
|
* If a subsystem is disabled in GStreamer, a value is defined in
|
2005-08-30 08:17:48 +00:00
|
|
|
* <gst/gst.h>. You can check this if you do subsystem-specific stuff.
|
2008-02-06 12:21:05 +00:00
|
|
|
* <example id="example-gstconfig">
|
2005-08-30 08:17:48 +00:00
|
|
|
* <title>Doing subsystem specific things</title>
|
|
|
|
* <programlisting>
|
|
|
|
* &hash;ifndef GST_DISABLE_GST_DEBUG
|
|
|
|
* // do stuff specific to the debugging subsystem
|
|
|
|
* &hash;endif // GST_DISABLE_GST_DEBUG
|
|
|
|
* </programlisting>
|
|
|
|
* </example>
|
|
|
|
*/
|
2003-06-29 14:05:49 +00:00
|
|
|
|
|
|
|
#ifndef __GST_CONFIG_H__
|
|
|
|
#define __GST_CONFIG_H__
|
|
|
|
|
2005-10-12 19:14:23 +00:00
|
|
|
/* trick gtk-doc into believing these symbols are defined (yes, it's ugly) */
|
2003-06-29 14:05:49 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
#define GST_DISABLE_GST_DEBUG 1
|
|
|
|
#define GST_DISABLE_PARSE 1
|
|
|
|
#define GST_DISABLE_TRACE 1
|
|
|
|
#define GST_DISABLE_ALLOC_TRACE 1
|
|
|
|
#define GST_DISABLE_REGISTRY 1
|
|
|
|
#define GST_DISABLE_PLUGIN 1
|
2005-09-22 12:05:05 +00:00
|
|
|
#define GST_HAVE_GLIB_2_8 1
|
2003-06-29 14:05:49 +00:00
|
|
|
#endif
|
|
|
|
|
2005-07-18 12:49:53 +00:00
|
|
|
/***** default padding of structures *****/
|
|
|
|
#define GST_PADDING 4
|
Correct all relevant warnings found by the sparse semantic code analyzer. This include marking several symbols static...
Original commit message from CVS:
* gst/gstconfig.h.in:
* libs/gst/base/gstcollectpads.c: (gst_collect_pads_read_buffer):
* libs/gst/check/gstcheck.c: (gst_check_log_message_func),
(gst_check_log_critical_func), (gst_check_drop_buffers),
(gst_check_element_push_buffer_list):
* libs/gst/controller/gstcontroller.c: (gst_controller_get),
(gst_controller_get_type):
* libs/gst/controller/gsthelper.c: (gst_object_control_properties),
(gst_object_get_controller), (gst_object_get_control_source):
* libs/gst/controller/gstinterpolationcontrolsource.c:
(gst_interpolation_control_source_new):
* libs/gst/controller/gstlfocontrolsource.c:
(gst_lfo_control_source_new):
* libs/gst/dataprotocol/dataprotocol.c:
(gst_dp_event_from_packet_0_2):
* plugins/elements/gstfdsrc.c:
* plugins/elements/gstmultiqueue.c:
* plugins/elements/gsttee.c:
* plugins/elements/gsttypefindelement.c:
* plugins/indexers/gstfileindex.c: (_file_index_id_save_xml),
(gst_file_index_add_association):
* plugins/indexers/gstmemindex.c:
* tests/benchmarks/gstpollstress.c: (mess_some_more):
* tests/check/elements/queue.c: (setup_queue):
* tests/check/gst/gstpipeline.c:
* tests/check/libs/collectpads.c: (setup), (teardown),
(gst_collect_pads_suite):
* tests/examples/adapter/adapter_test.c:
* tests/examples/metadata/read-metadata.c: (make_pipeline):
* tests/examples/xml/createxml.c:
* tests/examples/xml/runxml.c:
* tools/gst-inspect.c:
* tools/gst-run.c:
Correct all relevant warnings found by the sparse semantic code
analyzer. This include marking several symbols static, using
NULL instead of 0 for pointers, not using variable sized arrays
on the stack, moving variable declarations to the beginning of
a block and using "foo (void)" instead of "foo ()" for declarations.
2008-02-29 12:41:33 +00:00
|
|
|
#define GST_PADDING_INIT { NULL }
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2005-11-29 19:37:49 +00:00
|
|
|
/***** padding for very extensible base classes *****/
|
|
|
|
#define GST_PADDING_LARGE 20
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
/***** disabling of subsystems *****/
|
|
|
|
|
2006-07-10 19:35:32 +00:00
|
|
|
/**
|
|
|
|
* GST_DISABLE_GST_DEBUG:
|
|
|
|
*
|
|
|
|
* Configures the inclusion of the debugging subsystem
|
|
|
|
*/
|
2003-06-29 14:05:49 +00:00
|
|
|
@GST_DISABLE_GST_DEBUG_DEFINE@
|
|
|
|
|
2006-07-10 19:35:32 +00:00
|
|
|
/**
|
|
|
|
* GST_DISABLE_PARSE:
|
|
|
|
*
|
2013-12-07 14:38:19 +00:00
|
|
|
* Configures the inclusion of the gst-launch parser
|
2006-07-10 19:35:32 +00:00
|
|
|
*/
|
2003-06-29 14:05:49 +00:00
|
|
|
@GST_DISABLE_PARSE_DEFINE@
|
|
|
|
|
2006-07-10 19:35:32 +00:00
|
|
|
/**
|
|
|
|
* GST_DISABLE_TRACE:
|
|
|
|
*
|
2013-12-07 14:38:19 +00:00
|
|
|
* Configures the inclusion of a resource tracing facility
|
2006-07-10 18:27:40 +00:00
|
|
|
* (seems to be unused)
|
|
|
|
*/
|
2003-06-29 14:05:49 +00:00
|
|
|
@GST_DISABLE_TRACE_DEFINE@
|
|
|
|
|
2006-07-10 19:35:32 +00:00
|
|
|
/**
|
|
|
|
* GST_DISABLE_ALLOC_TRACE:
|
|
|
|
*
|
|
|
|
* Configures the use of a memory tracer based on the resource tracer
|
2006-07-10 18:27:40 +00:00
|
|
|
* if TRACE is disabled, ALLOC_TRACE is disabled as well
|
|
|
|
*/
|
2003-06-29 14:05:49 +00:00
|
|
|
@GST_DISABLE_ALLOC_TRACE_DEFINE@
|
|
|
|
|
2006-07-10 19:35:32 +00:00
|
|
|
/**
|
|
|
|
* GST_DISABLE_REGISTRY:
|
|
|
|
*
|
2007-04-20 08:39:35 +00:00
|
|
|
* Configures the use of the plugin registry.
|
|
|
|
* If one disables this, required plugins need to be loaded and registered
|
2008-03-03 14:43:26 +00:00
|
|
|
* manually
|
2006-07-10 18:27:40 +00:00
|
|
|
*/
|
2003-06-29 14:05:49 +00:00
|
|
|
@GST_DISABLE_REGISTRY_DEFINE@
|
|
|
|
|
2006-07-10 19:35:32 +00:00
|
|
|
/* FIXME: test and document these! */
|
|
|
|
/* Configures the use of external plugins */
|
2003-06-29 14:05:49 +00:00
|
|
|
@GST_DISABLE_PLUGIN_DEFINE@
|
|
|
|
|
2004-04-20 00:17:26 +00:00
|
|
|
/* whether or not the CPU supports unaligned access */
|
|
|
|
@GST_HAVE_UNALIGNED_ACCESS_DEFINE@
|
|
|
|
|
2005-05-02 15:20:30 +00:00
|
|
|
/**
|
|
|
|
* GST_EXPORT:
|
|
|
|
*
|
|
|
|
* Export the given variable from the built shared object.
|
|
|
|
*
|
|
|
|
* On Windows, this exports the variable from the DLL.
|
|
|
|
* On other platforms, this gets defined to "extern".
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* GST_PLUGIN_EXPORT:
|
|
|
|
*
|
|
|
|
* Export the plugin's definition.
|
|
|
|
*
|
|
|
|
* On Windows, this exports the plugin definition from the DLL.
|
|
|
|
* On other platforms, this gets defined as a no-op.
|
|
|
|
*/
|
2007-01-05 13:23:02 +00:00
|
|
|
#ifdef _MSC_VER
|
2004-07-25 11:07:03 +00:00
|
|
|
#define GST_PLUGIN_EXPORT __declspec(dllexport) extern
|
2004-06-13 10:04:12 +00:00
|
|
|
#ifdef GST_EXPORTS
|
|
|
|
#define GST_EXPORT __declspec(dllexport) extern
|
2004-06-12 11:31:49 +00:00
|
|
|
#else
|
2004-06-13 10:04:12 +00:00
|
|
|
#define GST_EXPORT __declspec(dllimport) extern
|
2004-06-12 11:31:49 +00:00
|
|
|
#endif
|
2007-01-05 13:23:02 +00:00
|
|
|
#else /* not _MSC_VER */
|
2005-05-02 15:20:30 +00:00
|
|
|
#define GST_PLUGIN_EXPORT
|
2012-01-01 15:46:04 +00:00
|
|
|
#if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
|
|
|
|
#define GST_EXPORT extern __attribute__ ((visibility ("default")))
|
|
|
|
#else
|
2004-06-13 10:04:12 +00:00
|
|
|
#define GST_EXPORT extern
|
2004-06-12 11:31:49 +00:00
|
|
|
#endif
|
2012-01-01 15:46:04 +00:00
|
|
|
#endif
|
2004-06-12 11:31:49 +00:00
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#endif /* __GST_CONFIG_H__ */
|