mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
d0b8df6677
Original commit message from CVS: restructured DParam docs added some thoughts about dparams ng
44 lines
908 B
Text
44 lines
908 B
Text
<!-- ##### SECTION Title ##### -->
|
|
gstcontrol
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
dynamic parameter functionality.
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
This library provides a Manager that maintains a list of dynamically
|
|
controlable parameters for a GstElement.
|
|
Just think of a volume slider in a mixer.
|
|
</para>
|
|
|
|
<para>
|
|
To use this library one needs to add some code to initialize it.
|
|
<example>
|
|
<title>Adding the control library to a project</title>
|
|
<programlisting>
|
|
...
|
|
&hash;include <gst/gst.h>
|
|
&hash;include <gst/control/control.h>
|
|
...
|
|
gst_init(&argc,&argv);
|
|
gst_control_init(&argc,&argv);
|
|
...
|
|
</programlisting>
|
|
</example>
|
|
The next step is to get hold of the GstDParamManager instance of a GstElement.
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
<!-- ##### FUNCTION gst_control_init ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|
|
@argc:
|
|
@argv:
|
|
|
|
|