mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
libs/gst/base/gstbasesrc.c: Its "Since:" and not "@Since:". And remove an superflous cast.
Original commit message from CVS: * libs/gst/base/gstbasesrc.c: Its "Since:" and not "@Since:". And remove an superflous cast.
This commit is contained in:
parent
2715cf6e28
commit
cb909e5a85
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-10-31 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* libs/gst/base/gstbasesrc.c:
|
||||
Its "Since:" and not "@Since:". And remove an superflous cast.
|
||||
|
||||
2007-10-30 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* docs/libs/gstreamer-libs-sections.txt:
|
||||
|
|
|
@ -460,7 +460,7 @@ gst_base_src_finalize (GObject * object)
|
|||
g_cond_free (basesrc->live_cond);
|
||||
|
||||
event_p = &basesrc->data.ABI.pending_seek;
|
||||
gst_event_replace ((GstEvent **) event_p, NULL);
|
||||
gst_event_replace (event_p, NULL);
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||
}
|
||||
|
@ -562,7 +562,7 @@ gst_base_src_is_live (GstBaseSrc * src)
|
|||
* If a format of GST_FORMAT_BYTES is set, the element will be able to
|
||||
* operate in pull mode if the #GstBaseSrc::is_seekable returns TRUE.
|
||||
*
|
||||
* @Since: 0.10.1
|
||||
* Since: 0.10.1
|
||||
*/
|
||||
void
|
||||
gst_base_src_set_format (GstBaseSrc * src, GstFormat format)
|
||||
|
|
Loading…
Reference in a new issue