From 087676f09beca81f3afa8411f3cc316be7dbd08a Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Thu, 30 Oct 2008 11:43:12 +0000 Subject: [PATCH] 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(). --- ChangeLog | 5 +++++ gst/audioresample/gstaudioresample.c | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 15989c7..5bc3336 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-30 Stefan Kost + + * gst/audioresample/gstaudioresample.c: + Return the result of parent_class->event(). + 2008-10-28 Sebastian Dröge * gst/audioresample/gstaudioresample.c: diff --git a/gst/audioresample/gstaudioresample.c b/gst/audioresample/gstaudioresample.c index ea1af70..5276220 100644 --- a/gst/audioresample/gstaudioresample.c +++ b/gst/audioresample/gstaudioresample.c @@ -503,9 +503,7 @@ audioresample_event (GstBaseTransform * base, GstEvent * event) default: break; } - parent_class->event (base, event); - - return TRUE; + return parent_class->event (base, event); } static GstFlowReturn -- 2.7.4