diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2008-10-30 11:43:12 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2008-10-30 11:43:12 +0000 |
commit | 896ef6c0e55e931794f6fae52106206b53b95501 (patch) | |
tree | e1f0b09d244e7d5ef8d3c791bdbfcd35ebd0561b /gst | |
parent | 130a6d86bef311262132b25a41808baaac55ae89 (diff) | |
download | gst-plugins-bad-896ef6c0e55e931794f6fae52106206b53b95501.tar.gz gst-plugins-bad-896ef6c0e55e931794f6fae52106206b53b95501.tar.bz2 gst-plugins-bad-896ef6c0e55e931794f6fae52106206b53b95501.zip |
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().
Diffstat (limited to 'gst')
-rw-r--r-- | gst/audioresample/gstaudioresample.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gst/audioresample/gstaudioresample.c b/gst/audioresample/gstaudioresample.c index ea1af706..52762202 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 |