mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-19 20:46:22 +00:00
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:
parent
1ecf114c0e
commit
25826ffe40
2 changed files with 8 additions and 0 deletions
|
@ -215,6 +215,8 @@ gst_param_spec_fraction (const gchar * name, const gchar * nick,
|
||||||
* may be modified given the current state of @element.
|
* may be modified given the current state of @element.
|
||||||
*
|
*
|
||||||
* Returns: TRUE if the property may be modified
|
* Returns: TRUE if the property may be modified
|
||||||
|
*
|
||||||
|
* Since: 0.10.23
|
||||||
*/
|
*/
|
||||||
gboolean
|
gboolean
|
||||||
gst_param_spec_is_mutable (GParamSpec * param_spec, GstElement * element)
|
gst_param_spec_is_mutable (GParamSpec * param_spec, GstElement * element)
|
||||||
|
|
|
@ -40,6 +40,8 @@ G_BEGIN_DECLS
|
||||||
*
|
*
|
||||||
* Use this flag on GObject properties of GstElements to indicate that
|
* 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.
|
* 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))
|
#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
|
* 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.
|
* they can be changed when the element is in the PAUSED or lower state.
|
||||||
* This flag implies GST_PARAM_MUTABLE_READY.
|
* This flag implies GST_PARAM_MUTABLE_READY.
|
||||||
|
*
|
||||||
|
* Since: 0.10.23
|
||||||
*/
|
*/
|
||||||
#define GST_PARAM_MUTABLE_PAUSED (1 << (G_PARAM_USER_SHIFT + 3))
|
#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
|
* 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.
|
* they can be changed when the element is in the PLAYING or lower state.
|
||||||
* This flag implies GST_PARAM_MUTABLE_PAUSED.
|
* This flag implies GST_PARAM_MUTABLE_PAUSED.
|
||||||
|
*
|
||||||
|
* Since: 0.10.23
|
||||||
*/
|
*/
|
||||||
#define GST_PARAM_MUTABLE_PLAYING (1 << (G_PARAM_USER_SHIFT + 4))
|
#define GST_PARAM_MUTABLE_PLAYING (1 << (G_PARAM_USER_SHIFT + 4))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue