From 9760c012f6286febadd5f7970f2b3a52e8294ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 5 Jun 2012 08:33:28 +0200 Subject: [PATCH] Revert "pad: Check via gst_pad_accept_caps() if a sinkpad accepts caps" This reverts commit 7558fd21eeb0bf7fcaaf78dcc9159c05780e0b56. Many elements, like ac3parse, depend on the broken behaviour and stop working after this change. --- gst/gstpad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstpad.c b/gst/gstpad.c index 4ea3140bae..e742c7caa4 100644 --- a/gst/gstpad.c +++ b/gst/gstpad.c @@ -2783,7 +2783,7 @@ gst_pad_configure_sink (GstPad * pad, GstCaps * caps) gboolean res; /* See if pad accepts the caps */ - if (!gst_pad_accept_caps (pad, caps)) + if (!gst_caps_can_intersect (caps, gst_pad_get_pad_template_caps (pad))) goto not_accepted; /* set caps on pad if call succeeds */