mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-07 16:49:52 +00:00
gst/scaletempo/gstscaletempo.c: Return the result of parent_class->event().
Original commit message from CVS: * gst/scaletempo/gstscaletempo.c: Return the result of parent_class->event().
This commit is contained in:
parent
b50b9cb0e2
commit
51262eeb4c
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-10-30 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/scaletempo/gstscaletempo.c:
|
||||
Return the result of parent_class->event().
|
||||
|
||||
2008-10-30 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* gst/audiobuffer/Makefile.am:
|
||||
|
|
|
@ -560,8 +560,7 @@ gst_scaletempo_sink_event (GstBaseTransform * trans, GstEvent * event)
|
|||
return FALSE;
|
||||
}
|
||||
}
|
||||
parent_class->event (trans, event);
|
||||
return TRUE;
|
||||
return parent_class->event (trans, event);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
|
Loading…
Reference in a new issue