From 49127d2e3e0257bcb3474dfa3655d1b071a14742 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Fri, 2 Sep 2005 21:37:55 +0000 Subject: [PATCH] run the wingo-magic script against the docs Original commit message from CVS: * docs/gst/gstreamer-sections.txt: * docs/gst/tmpl/gstelement.sgml: * gst/gstpad.c: * libs/gst/controller/gst-controller.c: (gst_controlled_property_set_interpolation_mode), (gst_controlled_property_new), (gst_controller_find_controlled_property): run the wingo-magic script against the docs --- ChangeLog | 11 +++++++++++ docs/gst/gstreamer-sections.txt | 18 +++++++++--------- docs/gst/tmpl/gstelement.sgml | 6 +++--- gst/gstpad.c | 4 ++-- libs/gst/controller/gst-controller.c | 8 +++++--- libs/gst/controller/gstcontroller.c | 8 +++++--- 6 files changed, 35 insertions(+), 20 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9ae0a902f1..ea9534a64d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2005-09-03 Stefan Kost + + * docs/gst/gstreamer-sections.txt: + * docs/gst/tmpl/gstelement.sgml: + * gst/gstpad.c: + * libs/gst/controller/gst-controller.c: + (gst_controlled_property_set_interpolation_mode), + (gst_controlled_property_new), + (gst_controller_find_controlled_property): + run the wingo-magic script against the docs + 2005-09-02 Stefan Kost * docs/gst/gstreamer-docs.sgml: diff --git a/docs/gst/gstreamer-sections.txt b/docs/gst/gstreamer-sections.txt index bebcedad41..385e5ecd3f 100644 --- a/docs/gst/gstreamer-sections.txt +++ b/docs/gst/gstreamer-sections.txt @@ -416,19 +416,19 @@ GST_NUM_STATES GST_STATE GST_STATE_PENDING GST_STATE_TRANSITION -GST_STATE_NULL_TO_READY -GST_STATE_READY_TO_PAUSED -GST_STATE_PAUSED_TO_PLAYING -GST_STATE_PLAYING_TO_PAUSED -GST_STATE_PAUSED_TO_READY -GST_STATE_READY_TO_NULL +GST_STATE_CHANGE_NULL_TO_READY +GST_STATE_CHANGE_READY_TO_PAUSED +GST_STATE_CHANGE_PAUSED_TO_PLAYING +GST_STATE_CHANGE_PLAYING_TO_PAUSED +GST_STATE_CHANGE_PAUSED_TO_READY +GST_STATE_CHANGE_READY_TO_NULL GST_STATE_BROADCAST GST_STATE_ERROR GST_STATE_FINAL GST_STATE_GET_COND GST_STATE_GET_LOCK GST_STATE_LOCK -GST_STATE_NO_PREROLL +GST_STATE_CHANGE_NO_PREROLL GST_STATE_SIGNAL GST_STATE_TIMED_WAIT GST_STATE_TRYLOCK @@ -1957,8 +1957,8 @@ gst_type_find_factory_get_type
gsttypes GstTypes -GstElementState -GstElementStateReturn +GstState +GstStateChangeReturn GstRank GST_TYPE_ELEMENT_STATE diff --git a/docs/gst/tmpl/gstelement.sgml b/docs/gst/tmpl/gstelement.sgml index 79ce4f06ee..82bc11ec75 100644 --- a/docs/gst/tmpl/gstelement.sgml +++ b/docs/gst/tmpl/gstelement.sgml @@ -45,10 +45,10 @@ each element by name. -Each element has a state (see #GstElementState). You can get and set the state +Each element has a state (see #GstState). You can get and set the state of an element with gst_element_get_state() and gst_element_set_state(). You can wait for an element to change it's state with gst_element_wait_state_change(). -To get a string representation of a #GstElementState, use +To get a string representation of a #GstState, use gst_element_state_get_name(). @@ -221,7 +221,7 @@ This macro returns the currently pending state of the element. @elem: - + diff --git a/gst/gstpad.c b/gst/gstpad.c index 20a654d62d..a8e1f73576 100644 --- a/gst/gstpad.c +++ b/gst/gstpad.c @@ -474,7 +474,7 @@ post_activate_switch (GstPad * pad, gboolean new_active) * @pad: the #GstPad to activate or deactivate. * @active: whether or not the pad should be active. * - * Activates or deactivates the given pad. Must be called with the STATE_LOCK. + * Activates or deactivates the given pad. Must be called with the %GST_STATE_LOCK. * Normally called from within core state change functions. * * If @active, makes sure the pad is active. If it is already active, either in @@ -487,7 +487,7 @@ post_activate_switch (GstPad * pad, gboolean new_active) * * Returns: TRUE if the operation was successfull. * - * MT safe. Must be called with STATE_LOCK. + * MT safe. Must be called with %GST_STATE_LOCK. */ gboolean gst_pad_set_active (GstPad * pad, gboolean active) diff --git a/libs/gst/controller/gst-controller.c b/libs/gst/controller/gst-controller.c index f2aacbb243..9ea5870f83 100644 --- a/libs/gst/controller/gst-controller.c +++ b/libs/gst/controller/gst-controller.c @@ -24,8 +24,10 @@ * SECTION:gstcontroller * @short_description: dynamic parameter control subsystem * - * The controller subsystem offers a lighwight way to adjust gobject properties - * over time. + * The controller subsystem offers a lightweight way to adjust gobject + * properties over stream-time. It works by using time-stampled value pairs that + * are queued for element-properties. At run-time the elements continously pulls + * values changes for the current stream-time. * * What needs to be changed in a #GstElement? * Very little - it is just two steps to make a plugin controllable! @@ -379,7 +381,7 @@ gst_controller_find_controlled_property (GstController * self, return (prop); } } - GST_WARNING ("controller does not manage property '%s'", name); + GST_DEBUG ("controller does not (yet) manage property '%s'", name); return (NULL); } diff --git a/libs/gst/controller/gstcontroller.c b/libs/gst/controller/gstcontroller.c index f2aacbb243..9ea5870f83 100644 --- a/libs/gst/controller/gstcontroller.c +++ b/libs/gst/controller/gstcontroller.c @@ -24,8 +24,10 @@ * SECTION:gstcontroller * @short_description: dynamic parameter control subsystem * - * The controller subsystem offers a lighwight way to adjust gobject properties - * over time. + * The controller subsystem offers a lightweight way to adjust gobject + * properties over stream-time. It works by using time-stampled value pairs that + * are queued for element-properties. At run-time the elements continously pulls + * values changes for the current stream-time. * * What needs to be changed in a #GstElement? * Very little - it is just two steps to make a plugin controllable! @@ -379,7 +381,7 @@ gst_controller_find_controlled_property (GstController * self, return (prop); } } - GST_WARNING ("controller does not manage property '%s'", name); + GST_DEBUG ("controller does not (yet) manage property '%s'", name); return (NULL); }