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:
Stefan Kost 2007-10-31 13:01:34 +00:00
parent 2715cf6e28
commit cb909e5a85
2 changed files with 7 additions and 2 deletions

View file

@ -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:

View file

@ -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)