mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
introspection: annotate handle_message ownership
(fixup/improvement to !747) Correct the ownership annotation for `message` in the `handle_message` vfunc, and remove the equivalent phrase elsewhere (following rules of !747. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/830>
This commit is contained in:
parent
aaaf85054f
commit
b296e914a5
1 changed files with 2 additions and 3 deletions
|
@ -165,8 +165,7 @@ struct _GstBin {
|
||||||
* to update the list of children in the bin.
|
* to update the list of children in the bin.
|
||||||
*
|
*
|
||||||
* The #GstBinClass::handle_message method can be overridden to implement custom
|
* The #GstBinClass::handle_message method can be overridden to implement custom
|
||||||
* message handling. handle_message takes ownership of the message, just like
|
* message handling.
|
||||||
* gst_element_post_message().
|
|
||||||
*
|
*
|
||||||
* #GstBinClass::deep_element_added will be called when a new element has been
|
* #GstBinClass::deep_element_added will be called when a new element has been
|
||||||
* added to any bin inside this bin, so it will also be called if a new child
|
* added to any bin inside this bin, so it will also be called if a new child
|
||||||
|
@ -228,7 +227,7 @@ struct _GstBinClass {
|
||||||
/**
|
/**
|
||||||
* GstBinClass::handle_message:
|
* GstBinClass::handle_message:
|
||||||
* @bin: the #GstBin
|
* @bin: the #GstBin
|
||||||
* @message: the message to be handled
|
* @message: (transfer full): the message to be handled
|
||||||
*
|
*
|
||||||
* Method to handle a message from the children.
|
* Method to handle a message from the children.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue