mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
Minor docs fixes.
Original commit message from CVS: * docs/gst/gstreamer-sections.txt: * gst/gstevent.c: * gst/gstevent.h: * gst/gstmessage.h: Minor docs fixes.
This commit is contained in:
parent
068893b8b2
commit
d619a982a8
5 changed files with 21 additions and 4 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-05-14 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* docs/gst/gstreamer-sections.txt:
|
||||
* gst/gstevent.c:
|
||||
* gst/gstevent.h:
|
||||
* gst/gstmessage.h:
|
||||
Minor docs fixes.
|
||||
|
||||
=== release 0.10.6 ===
|
||||
|
||||
2006-05-14 Jan Schmidt <thaytan@mad.scientist.com>
|
||||
|
|
|
@ -629,11 +629,13 @@ gst_event_new_flush_start
|
|||
gst_event_new_flush_stop
|
||||
gst_event_new_navigation
|
||||
gst_event_new_new_segment
|
||||
gst_event_new_new_segment_full
|
||||
gst_event_new_qos
|
||||
gst_event_new_seek
|
||||
gst_event_new_tag
|
||||
gst_event_parse_buffer_size
|
||||
gst_event_parse_new_segment
|
||||
gst_event_parse_new_segment_full
|
||||
gst_event_parse_qos
|
||||
gst_event_parse_seek
|
||||
gst_event_parse_tag
|
||||
|
@ -1663,6 +1665,7 @@ gst_segment_free
|
|||
gst_segment_set_duration
|
||||
gst_segment_set_last_stop
|
||||
gst_segment_set_newsegment
|
||||
gst_segment_set_newsegment_full
|
||||
gst_segment_set_seek
|
||||
gst_segment_to_running_time
|
||||
gst_segment_to_stream_time
|
||||
|
@ -1792,6 +1795,7 @@ GST_TAG_TRACK_PEAK
|
|||
GST_TAG_ALBUM_GAIN
|
||||
GST_TAG_ALBUM_PEAK
|
||||
GST_TAG_LANGUAGE_CODE
|
||||
GST_TAG_IMAGE
|
||||
|
||||
gst_tag_register
|
||||
gst_tag_merge_use_first
|
||||
|
|
|
@ -422,6 +422,8 @@ gst_event_new_eos (void)
|
|||
*
|
||||
* This method calls gst_event_new_new_segment_full() passing a default
|
||||
* value of 1.0 for applied_rate
|
||||
*
|
||||
* Returns: A new newsegment event.
|
||||
*/
|
||||
GstEvent *
|
||||
gst_event_new_new_segment (gboolean update, gdouble rate, GstFormat format,
|
||||
|
|
|
@ -322,12 +322,14 @@ GType gst_event_get_type (void);
|
|||
/* refcounting */
|
||||
/**
|
||||
* gst_event_ref:
|
||||
* @ev: The event to refcount
|
||||
* @event: The event to refcount
|
||||
*
|
||||
* Increase the refcount of this event.
|
||||
*
|
||||
* Returns: @event (for convenience when doing assignments)
|
||||
*/
|
||||
#ifdef _FOOL_GTK_DOC_
|
||||
G_INLINE_FUNC GstEvent * gst_event_ref (GstEvent * ev);
|
||||
G_INLINE_FUNC GstEvent * gst_event_ref (GstEvent * event);
|
||||
#endif
|
||||
|
||||
static inline GstEvent *
|
||||
|
|
|
@ -196,8 +196,9 @@ GQuark gst_message_type_to_quark (GstMessageType type);
|
|||
* gst_message_ref:
|
||||
* @msg: the message to ref
|
||||
*
|
||||
* Convenience macro to increase the reference count of the message. Returns the
|
||||
* reffed message.
|
||||
* Convenience macro to increase the reference count of the message.
|
||||
*
|
||||
* Returns: @msg (for convenience when doing assignments)
|
||||
*/
|
||||
#ifdef _FOOL_GTK_DOC_
|
||||
G_INLINE_FUNC GstMessage * gst_message_ref (GstMessage * msg);
|
||||
|
|
Loading…
Reference in a new issue