Fixes bug where median doesnt trigger capsnego
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 9 Sep 2002 17:42:05 +0000 (17:42 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 9 Sep 2002 17:42:05 +0000 (17:42 +0000)
Original commit message from CVS:
Fixes bug where median doesnt trigger capsnego

gst/median/gstmedian.c

index bec2768..2e8710a 100644 (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;
 }