diff --git a/docs/libs/gstreamer-libs-docs.sgml b/docs/libs/gstreamer-libs-docs.sgml index f8dfc6b952..92d25fb089 100644 --- a/docs/libs/gstreamer-libs-docs.sgml +++ b/docs/libs/gstreamer-libs-docs.sgml @@ -56,6 +56,9 @@ element properties over time. + + + diff --git a/docs/libs/gstreamer-libs-sections.txt b/docs/libs/gstreamer-libs-sections.txt index 1dd957c12c..5c683ac0eb 100644 --- a/docs/libs/gstreamer-libs-sections.txt +++ b/docs/libs/gstreamer-libs-sections.txt @@ -13,6 +13,44 @@ # # +# control binding classes + +
+gstargbcontrolbinding +GstARGBControlBinding +libs/controller/gstargbcontrolbinding.h +gst_argb_control_binding_new + +GstARGBControlBinding +GstARGBControlBindingClass +GST_ARGB_CONTROL_BINDING +GST_ARGB_CONTROL_BINDING_CLASS +GST_ARGB_CONTROL_BINDING_GET_CLASS +GST_IS_ARGB_CONTROL_BINDING +GST_IS_ARGB_CONTROL_BINDING_CLASS +GST_TYPE_ARGB_CONTROL_BINDING +gst_argb_control_binding_get_type +
+ +
+gstdirectcontrolbinding +GstDirectControlBinding +libs/controller/gstdirectcontrolbinding.h +gst_direct_control_binding_new + +GstDirectControlBindingConvertValue +GstDirectControlBindingConvertGValue +GstDirectControlBinding +GstDirectControlBindingClass +GST_DIRECT_CONTROL_BINDING +GST_DIRECT_CONTROL_BINDING_CLASS +GST_DIRECT_CONTROL_BINDING_GET_CLASS +GST_IS_DIRECT_CONTROL_BINDING +GST_IS_DIRECT_CONTROL_BINDING_CLASS +GST_TYPE_DIRECT_CONTROL_BINDING +gst_direct_control_binding_get_type +
+ # control source classes
diff --git a/docs/libs/gstreamer-libs.types b/docs/libs/gstreamer-libs.types index 4980191109..8681c4cdd6 100644 --- a/docs/libs/gstreamer-libs.types +++ b/docs/libs/gstreamer-libs.types @@ -18,11 +18,15 @@ gst_push_src_get_type % controller +#include +#include #include #include #include #include +gst_argb_control_binding_get_type +gst_direct_control_binding_get_type gst_timed_value_control_source_get_type gst_interpolation_control_source_get_type gst_lfo_control_source_get_type diff --git a/gst/gstcontrolbinding.c b/gst/gstcontrolbinding.c index 67a7f7d614..3868dc774b 100644 --- a/gst/gstcontrolbinding.c +++ b/gst/gstcontrolbinding.c @@ -294,7 +294,7 @@ gst_control_binding_get_value (GstControlBinding * binding, * * The values are unboxed and ready to be used. The similar function * gst_control_binding_get_g_value_array() returns the array as #GValues and is - * better suites for bindings. + * more suitable for bindings. * * Returns: %TRUE if the given array could be filled, %FALSE otherwise */ diff --git a/libs/gst/controller/gstargbcontrolbinding.c b/libs/gst/controller/gstargbcontrolbinding.c index 61cf442611..3bb04c170a 100644 --- a/libs/gst/controller/gstargbcontrolbinding.c +++ b/libs/gst/controller/gstargbcontrolbinding.c @@ -22,10 +22,11 @@ */ /** * SECTION:gstargbcontrolbinding - * @short_description: attachment for control source sources to argb properties + * @short_description: attachment for control sources to argb properties * * A value mapping object that attaches multiple control sources to a guint - * gobject properties representing a color. + * gobject properties representing a color. A control value of 0.0 will turn the + * color component off and a value of 1.0 will be the color level. */ #include diff --git a/libs/gst/controller/gstdirectcontrolbinding.c b/libs/gst/controller/gstdirectcontrolbinding.c index ae9fe97411..7daaed321f 100644 --- a/libs/gst/controller/gstdirectcontrolbinding.c +++ b/libs/gst/controller/gstdirectcontrolbinding.c @@ -21,9 +21,10 @@ */ /** * SECTION:gstdirectcontrolbinding - * @short_description: direct attachment for control source sources + * @short_description: direct attachment for control sources * - * A value mapping object that attaches control sources to gobject properties. + * A value mapping object that attaches control sources to gobject properties. It + * will map the control values [0.0 ... 1.0] to the target property range. */