mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
scaletempo: Return the result of parent_class->event()
Original commit message from CVS: * gst/audiofx/gstscaletempo.c: Return the result of parent_class->event().
This commit is contained in:
parent
43e79f7769
commit
9284c85b33
1 changed files with 1 additions and 2 deletions
|
@ -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