From b55bc351620e5380611ace3269c14c7e44d02627 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 9 Sep 2002 17:42:05 +0000 Subject: Fixes bug where median doesnt trigger capsnego Original commit message from CVS: Fixes bug where median doesnt trigger capsnego --- gst/median/gstmedian.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gst/median') diff --git a/gst/median/gstmedian.c b/gst/median/gstmedian.c index bec2768b..2e8710a9 100644 --- a/gst/median/gstmedian.c +++ b/gst/median/gstmedian.c @@ -137,6 +137,10 @@ gst_median_sinkconnect (GstPad *pad, GstCaps *caps) gst_caps_get_int (caps, "width", &filter->width); gst_caps_get_int (caps, "height", &filter->height); + /* forward to the next plugin */ + if (!gst_pad_try_set_caps(filter->srcpad, gst_caps_copy_1(caps))) + return GST_PAD_CONNECT_REFUSED; + return GST_PAD_CONNECT_OK; } -- cgit