mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-25 15:36:42 +00:00
gst/audioresample/gstaudioresample.c: Return the result of parent_class->event().
Original commit message from CVS: * gst/audioresample/gstaudioresample.c: Return the result of parent_class->event().
This commit is contained in:
parent
1f724549e4
commit
087676f09b
2 changed files with 6 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2008-10-30 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* gst/audioresample/gstaudioresample.c:
|
||||||
|
Return the result of parent_class->event().
|
||||||
|
|
||||||
2008-10-28 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
2008-10-28 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||||
|
|
||||||
* gst/audioresample/gstaudioresample.c:
|
* gst/audioresample/gstaudioresample.c:
|
||||||
|
|
|
@ -503,9 +503,7 @@ audioresample_event (GstBaseTransform * base, GstEvent * event)
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
parent_class->event (base, event);
|
return parent_class->event (base, event);
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstFlowReturn
|
static GstFlowReturn
|
||||||
|
|
Loading…
Reference in a new issue