mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +00:00
docs: link bus and tasks
Add a link from bus section docs to the task docs. Add a paragraph to task docs to tell about messages and the bus.
This commit is contained in:
parent
790e5d10c8
commit
0b7f75c205
2 changed files with 6 additions and 1 deletions
|
@ -25,7 +25,8 @@
|
||||||
* @see_also: #GstMessage, #GstElement
|
* @see_also: #GstMessage, #GstElement
|
||||||
*
|
*
|
||||||
* The #GstBus is an object responsible for delivering #GstMessage packets in
|
* The #GstBus is an object responsible for delivering #GstMessage packets in
|
||||||
* a first-in first-out way from the streaming threads to the application.
|
* a first-in first-out way from the streaming threads (see #GstTask) to the
|
||||||
|
* application.
|
||||||
*
|
*
|
||||||
* Since the application typically only wants to deal with delivery of these
|
* Since the application typically only wants to deal with delivery of these
|
||||||
* messages from one thread, the GstBus will marshall the messages between
|
* messages from one thread, the GstBus will marshall the messages between
|
||||||
|
|
|
@ -56,6 +56,10 @@
|
||||||
* After creating a #GstTask, use gst_object_unref() to free its resources. This can
|
* After creating a #GstTask, use gst_object_unref() to free its resources. This can
|
||||||
* only be done it the task is not running anymore.
|
* only be done it the task is not running anymore.
|
||||||
*
|
*
|
||||||
|
* Task functions can send a #GstMessage to send out-of-band data to the
|
||||||
|
* application. The application can receive messages from the #GstBus in its
|
||||||
|
* mainloop.
|
||||||
|
*
|
||||||
* Last reviewed on 2006-02-13 (0.10.4)
|
* Last reviewed on 2006-02-13 (0.10.4)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue