mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
cdc8ba9725
Original commit message from CVS: * docs/gst/gstreamer-sections.txt: made some defines private * docs/gst/tmpl/gstconfig.sgml: * docs/gst/tmpl/gstqueue.sgml: * docs/gst/tmpl/gsttaglist.sgml: * docs/gst/tmpl/gsttypes.sgml: * docs/gst/tmpl/gstutils.sgml: * docs/pwg/appendix-porting.xml: * gst/base/gstbasesink.h: * gst/base/gstbasesrc.c: * gst/base/gstbasesrc.h: * gst/elements/gstfakesink.c: (gst_fake_sink_class_init): * gst/elements/gstfakesrc.c: (gst_fake_src_class_init): * gst/gstelement.c: (gst_element_class_init): * gst/gstpad.c: (gst_pad_class_init): * gst/gstqueue.c: (gst_queue_class_init): * gst/gstxml.c: (gst_xml_class_init): documented all undocumented signal inline * libs/gst/controller/gst-controller.h: added padding
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
<!-- ##### SECTION Title ##### -->
|
|
GstConfig
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
Configuration options
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
This describes the configuration options for GStreamer. When building
|
|
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.
|
|
</para>
|
|
|
|
<para>
|
|
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.
|
|
</para>
|
|
|
|
<para>
|
|
If a subsystem is disabled in GStreamer, a value is defined in
|
|
<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>
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### SECTION Stability_Level ##### -->
|
|
|
|
|