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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
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
|
|
|
|
* suybsystem, 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.
|
|
|
|
* <example>
|
|
|
|
* <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_LOADSAVE_REGISTRY 1
|
|
|
|
#define GST_DISABLE_GST_DEBUG 1
|
|
|
|
#define GST_DISABLE_LOADSAVE 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_ENUMTYPES 1
|
|
|
|
#define GST_DISABLE_INDEX 1
|
|
|
|
#define GST_DISABLE_PLUGIN 1
|
|
|
|
#define GST_DISABLE_URI 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
|
|
|
|
#define GST_PADDING_INIT {0}
|
2003-06-29 14:05:49 +00:00
|
|
|
|
|
|
|
/***** disabling of subsystems *****/
|
|
|
|
|
|
|
|
/* wether or not the debugging subsystem is enabled */
|
|
|
|
@GST_DISABLE_GST_DEBUG_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_LOADSAVE_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_PARSE_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_TRACE_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_ALLOC_TRACE_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_REGISTRY_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_ENUMTYPES_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_INDEX_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_PLUGIN_DEFINE@
|
|
|
|
|
|
|
|
/* DOES NOT WORK */
|
|
|
|
@GST_DISABLE_URI_DEFINE@
|
|
|
|
|
configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
Original commit message from CVS:
* configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
GST_PRINTF_EXTENSION_FORMAT_DEFINE.
* docs/random/ds/0.9-suggested-changes: Notes from Company.
* gst/gstcaps.c: (gst_caps_to_string): Add comment.
* gst/gstconfig.h.in: Add define for GST_PTR_FORMAT
* gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_object),
(gst_debug_log_default), (_gst_info_printf_extension),
(_gst_info_printf_extension_arginfo): Add printf extension.
* gst/gstinfo.h: remove G_GNUC_PRINTF, because it doesn't work with %P
* gst/gststructure.c: (gst_structure_to_string),
(_gst_structure_parse_value): Use gst_value_deserialize() and
remove old code.
* gst/gstvalue.c: (gst_value_deserialize_fourcc),
(gst_value_deserialize_boolean), (gst_strtoi),
(gst_value_deserialize_int), (gst_value_deserialize_double),
(gst_value_deserialize_string), (gst_value_deserialize): Implement
a bunch of deserialize functions and gst_value_deserialize.
* gst/gstvalue.h: er, _de_serialize, not unserialize
* testsuite/caps/string-conversions.c: (main): We don't currently
handle (float) in caps, so convert these to (double).
* testsuite/debug/Makefile.am: Add new test for the printf extension
* testsuite/debug/printf_extension.c: (main): same
2004-01-29 01:20:23 +00:00
|
|
|
/* printf extension format */
|
2005-05-02 15:20:30 +00:00
|
|
|
/**
|
|
|
|
* GST_PTR_FORMAT:
|
|
|
|
*
|
|
|
|
* printf format type used to debug GStreamer types.
|
|
|
|
* This can only be used on types whose size is >= sizeof(gpointer).
|
|
|
|
*/
|
configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
Original commit message from CVS:
* configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
GST_PRINTF_EXTENSION_FORMAT_DEFINE.
* docs/random/ds/0.9-suggested-changes: Notes from Company.
* gst/gstcaps.c: (gst_caps_to_string): Add comment.
* gst/gstconfig.h.in: Add define for GST_PTR_FORMAT
* gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_object),
(gst_debug_log_default), (_gst_info_printf_extension),
(_gst_info_printf_extension_arginfo): Add printf extension.
* gst/gstinfo.h: remove G_GNUC_PRINTF, because it doesn't work with %P
* gst/gststructure.c: (gst_structure_to_string),
(_gst_structure_parse_value): Use gst_value_deserialize() and
remove old code.
* gst/gstvalue.c: (gst_value_deserialize_fourcc),
(gst_value_deserialize_boolean), (gst_strtoi),
(gst_value_deserialize_int), (gst_value_deserialize_double),
(gst_value_deserialize_string), (gst_value_deserialize): Implement
a bunch of deserialize functions and gst_value_deserialize.
* gst/gstvalue.h: er, _de_serialize, not unserialize
* testsuite/caps/string-conversions.c: (main): We don't currently
handle (float) in caps, so convert these to (double).
* testsuite/debug/Makefile.am: Add new test for the printf extension
* testsuite/debug/printf_extension.c: (main): same
2004-01-29 01:20:23 +00:00
|
|
|
@GST_PRINTF_EXTENSION_FORMAT_DEFINE@
|
2003-06-29 14:05:49 +00:00
|
|
|
|
2004-04-20 00:17:26 +00:00
|
|
|
/* whether or not the CPU supports unaligned access */
|
|
|
|
@GST_HAVE_UNALIGNED_ACCESS_DEFINE@
|
|
|
|
|
2005-09-20 11:09:50 +00:00
|
|
|
/* whether or not we are using glib 2.8 api, e.g. atomic gobject
|
|
|
|
refcounting */
|
|
|
|
@GST_HAVE_GLIB_2_8_DEFINE@
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
/***** Deal with XML stuff, we have to handle both loadsave and registry *****/
|
|
|
|
|
|
|
|
#if (! (defined(GST_DISABLE_LOADSAVE) && defined(GST_DISABLE_REGISTRY)) )
|
|
|
|
# include <libxml/parser.h>
|
|
|
|
#else
|
|
|
|
# define GST_DISABLE_LOADSAVE_REGISTRY
|
|
|
|
#endif
|
|
|
|
|
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.
|
|
|
|
*/
|
2005-09-13 14:49:23 +00:00
|
|
|
#if defined(WIN32) && (!defined(__MINGW32__))
|
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
|
2004-07-25 11:07:03 +00:00
|
|
|
#else /* not WIN32 */
|
2005-05-02 15:20:30 +00:00
|
|
|
#define GST_PLUGIN_EXPORT
|
2004-06-13 10:04:12 +00:00
|
|
|
#define GST_EXPORT extern
|
2004-06-12 11:31:49 +00:00
|
|
|
#endif
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#endif /* __GST_CONFIG_H__ */
|