mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:26:14 +00:00
gst/gstbus.c: Fix some typos, make docs more explicit.
Original commit message from CVS: * gst/gstbus.c: (gst_bus_class_init): Fix some typos, make docs more explicit.
This commit is contained in:
parent
479ef6daa5
commit
f312986266
2 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2006-06-21 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/gstbus.c: (gst_bus_class_init):
|
||||||
|
Fix some typos, make docs more explicit.
|
||||||
|
|
||||||
2006-06-20 Wim Taymans <wim@fluendo.com>
|
2006-06-20 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
* tests/check/gst/gstghostpad.c: (block_callback),
|
* tests/check/gst/gstghostpad.c: (block_callback),
|
||||||
|
|
|
@ -183,7 +183,7 @@ gst_bus_class_init (GstBusClass * klass)
|
||||||
* @message: the message that has been posted synchronously
|
* @message: the message that has been posted synchronously
|
||||||
*
|
*
|
||||||
* A message has been posted on the bus. This signal is emitted from the
|
* A message has been posted on the bus. This signal is emitted from the
|
||||||
* thread that posted the message so one has to be carefull with locking.
|
* thread that posted the message so one has to be careful with locking.
|
||||||
*/
|
*/
|
||||||
gst_bus_signals[SYNC_MESSAGE] =
|
gst_bus_signals[SYNC_MESSAGE] =
|
||||||
g_signal_new ("sync-message", G_TYPE_FROM_CLASS (klass),
|
g_signal_new ("sync-message", G_TYPE_FROM_CLASS (klass),
|
||||||
|
@ -197,7 +197,7 @@ gst_bus_class_init (GstBusClass * klass)
|
||||||
* @message: the message that has been posted asynchronously
|
* @message: the message that has been posted asynchronously
|
||||||
*
|
*
|
||||||
* A message has been posted on the bus. This signal is emitted from a
|
* A message has been posted on the bus. This signal is emitted from a
|
||||||
* GSource added to the mainloop. this signal will only be emited when
|
* GSource added to the mainloop. this signal will only be emitted when
|
||||||
* there is a mainloop running.
|
* there is a mainloop running.
|
||||||
*/
|
*/
|
||||||
gst_bus_signals[ASYNC_MESSAGE] =
|
gst_bus_signals[ASYNC_MESSAGE] =
|
||||||
|
@ -478,6 +478,8 @@ gst_bus_set_flushing (GstBus * bus, gboolean flushing)
|
||||||
* Get a message from the bus.
|
* Get a message from the bus.
|
||||||
*
|
*
|
||||||
* Returns: The #GstMessage that is on the bus, or NULL if the bus is empty.
|
* Returns: The #GstMessage that is on the bus, or NULL if the bus is empty.
|
||||||
|
* The message is taken from the bus and needs to be unreffed with
|
||||||
|
* gst_message_unref() after usage.
|
||||||
*
|
*
|
||||||
* MT safe.
|
* MT safe.
|
||||||
*/
|
*/
|
||||||
|
@ -826,7 +828,8 @@ poll_destroy_timeout (GstBusPollData * poll_data)
|
||||||
* polling.
|
* polling.
|
||||||
*
|
*
|
||||||
* Returns: The message that was received, or NULL if the poll timed out.
|
* Returns: The message that was received, or NULL if the poll timed out.
|
||||||
* The message is taken from the bus and needs to be unreffed after usage.
|
* The message is taken from the bus and needs to be unreffed with
|
||||||
|
* gst_message_unref() after usage.
|
||||||
*/
|
*/
|
||||||
GstMessage *
|
GstMessage *
|
||||||
gst_bus_poll (GstBus * bus, GstMessageType events, GstClockTimeDiff timeout)
|
gst_bus_poll (GstBus * bus, GstMessageType events, GstClockTimeDiff timeout)
|
||||||
|
|
Loading…
Reference in a new issue