plugins/elements/gstidentity.c: Doc typo. Use return value of parent_class->event.

Original commit message from CVS:
* plugins/elements/gstidentity.c:
Doc typo. Use return value of parent_class->event.
* plugins/elements/gsttypefindelement.c:
Chain up at the end for consistency.
This commit is contained in:
Stefan Kost 2008-10-31 08:53:27 +00:00
parent 7407326abb
commit fa7e7d29a2
3 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,11 @@
2008-10-31 Stefan Kost <ensonic@users.sf.net>
* plugins/elements/gstidentity.c:
Doc typo. Use return value of parent_class->event.
* plugins/elements/gsttypefindelement.c:
Chain up at the end for consistency.
2008-10-30 Stefan Kost <ensonic@users.sf.net>
* docs/Makefile.am:

View file

@ -23,7 +23,7 @@
/**
* SECTION:element-identity
*
* Dummy element that passes incomming data through unmodified. I has some
* Dummy element that passes incomming data through unmodified. It has some
* useful diagnostic functions, such as offset and timestamp checking.
*/
@ -347,7 +347,7 @@ gst_identity_event (GstBaseTransform * trans, GstEvent * event)
identity->prev_offset = identity->prev_offset_end = GST_BUFFER_OFFSET_NONE;
}
GST_BASE_TRANSFORM_CLASS (parent_class)->event (trans, event);
ret = parent_class->event (trans, event);
if (identity->single_segment
&& (GST_EVENT_TYPE (event) == GST_EVENT_NEWSEGMENT)) {

View file

@ -283,13 +283,14 @@ gst_type_find_element_dispose (GObject * object)
{
GstTypeFindElement *typefind = GST_TYPE_FIND_ELEMENT (object);
G_OBJECT_CLASS (parent_class)->dispose (object);
if (typefind->store) {
gst_buffer_unref (typefind->store);
typefind->store = NULL;
}
G_OBJECT_CLASS (parent_class)->dispose (object);
}
static void
gst_type_find_element_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)