docs: add Since: tags to gtk-doc chunks for new param spec API

And, for our release manager, the in-commit-message keywords
for the previous commit:
API: GST_PARAM_MUTABLE_READY
API: GST_PARAM_MUTABLE_PAUSED
API: GST_PARAM_MUTABLE_PLAYING
API: gst_param_spec_is_mutable
This commit is contained in:
Tim-Philipp Müller 2009-04-13 14:27:49 +01:00
parent 1ecf114c0e
commit 25826ffe40
2 changed files with 8 additions and 0 deletions

View file

@ -215,6 +215,8 @@ gst_param_spec_fraction (const gchar * name, const gchar * nick,
* may be modified given the current state of @element.
*
* Returns: TRUE if the property may be modified
*
* Since: 0.10.23
*/
gboolean
gst_param_spec_is_mutable (GParamSpec * param_spec, GstElement * element)

View file

@ -40,6 +40,8 @@ G_BEGIN_DECLS
*
* Use this flag on GObject properties of GstElements to indicate that
* they can be changed when the element is in the READY or lower state.
*
* Since: 0.10.23
*/
#define GST_PARAM_MUTABLE_READY (1 << (G_PARAM_USER_SHIFT + 2))
@ -49,6 +51,8 @@ G_BEGIN_DECLS
* Use this flag on GObject properties of GstElements to indicate that
* they can be changed when the element is in the PAUSED or lower state.
* This flag implies GST_PARAM_MUTABLE_READY.
*
* Since: 0.10.23
*/
#define GST_PARAM_MUTABLE_PAUSED (1 << (G_PARAM_USER_SHIFT + 3))
@ -58,6 +62,8 @@ G_BEGIN_DECLS
* Use this flag on GObject properties of GstElements to indicate that
* they can be changed when the element is in the PLAYING or lower state.
* This flag implies GST_PARAM_MUTABLE_PAUSED.
*
* Since: 0.10.23
*/
#define GST_PARAM_MUTABLE_PLAYING (1 << (G_PARAM_USER_SHIFT + 4))