From 3ab2eeecb88fba3b6345f73e3cf59849f54c0f11 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Tue, 26 Oct 2010 16:54:11 +0100 Subject: [PATCH] videoflip: Forward src pad events upstream. Fix passing navigation and other events upstream by actually sending them. Fixes: #633205 --- gst/videofilter/gstvideoflip.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gst/videofilter/gstvideoflip.c b/gst/videofilter/gstvideoflip.c index 7b3e2a9959..150017b3e6 100644 --- a/gst/videofilter/gstvideoflip.c +++ b/gst/videofilter/gstvideoflip.c @@ -702,6 +702,7 @@ gst_video_flip_src_event (GstBaseTransform * trans, GstEvent * event) GstVideoFlip *vf = GST_VIDEO_FLIP (trans); gdouble new_x, new_y, x, y; GstStructure *structure; + gboolean ret; GST_DEBUG_OBJECT (vf, "handling %s event", GST_EVENT_TYPE_NAME (event)); @@ -757,7 +758,9 @@ gst_video_flip_src_event (GstBaseTransform * trans, GstEvent * event) break; } - return TRUE; + ret = GST_BASE_TRANSFORM_CLASS (parent_class)->src_event (trans, event); + + return ret; } static void