diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-10-30 12:13:18 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-10-30 12:13:18 +0000 |
commit | 51262eeb4c2741369bcdd5440d8be4f618e99af2 (patch) | |
tree | 2c0b039ea6e440385fd3d8b8d9ad4a313eb956ee | |
parent | b50b9cb0e2f226a6ff89eedb62a62fc83a0fe4bb (diff) | |
download | gst-plugins-bad-51262eeb4c2741369bcdd5440d8be4f618e99af2.tar.gz gst-plugins-bad-51262eeb4c2741369bcdd5440d8be4f618e99af2.tar.bz2 gst-plugins-bad-51262eeb4c2741369bcdd5440d8be4f618e99af2.zip |
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().
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/scaletempo/gstscaletempo.c | 3 |
2 files changed, 6 insertions, 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: diff --git a/gst/scaletempo/gstscaletempo.c b/gst/scaletempo/gstscaletempo.c index 923c2fd1..45fdb516 100644 --- a/gst/scaletempo/gstscaletempo.c +++ b/gst/scaletempo/gstscaletempo.c @@ -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 |