Fixes bug where median doesnt trigger capsnego

Original commit message from CVS:
Fixes bug where median doesnt trigger capsnego
This commit is contained in:
Ronald S. Bultje 2002-09-09 17:42:05 +00:00
parent 5b4180eca8
commit b55bc35162

View file

@ -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;
}