summaryrefslogtreecommitdiffstats
path: root/gst/gdp
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2006-07-26 10:52:05 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2006-07-26 10:52:05 +0000
commitb093995aa90655418907fa204243ae6d7d591feb (patch)
treecdd1f56af52e4535ec1508d6f34727b298e077bc /gst/gdp
parent454c2523355d5a278cf1293c446f308ce4d48c61 (diff)
downloadgst-plugins-bad-b093995aa90655418907fa204243ae6d7d591feb.tar.gz
gst-plugins-bad-b093995aa90655418907fa204243ae6d7d591feb.tar.bz2
gst-plugins-bad-b093995aa90655418907fa204243ae6d7d591feb.zip
gst/gdp/gstgdpdepay.c: proxying get/set caps is the wrong thing to do, since we really do change caps quite fundament...
Original commit message from CVS: * gst/gdp/gstgdpdepay.c: (gst_gdp_depay_init): proxying get/set caps is the wrong thing to do, since we really do change caps quite fundamentally * tests/check/elements/gdpdepay.c: * tests/check/elements/gdppay.c: remove declaration of buffers, it's already done in gstcheck.h
Diffstat (limited to 'gst/gdp')
-rw-r--r--gst/gdp/gstgdpdepay.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gst/gdp/gstgdpdepay.c b/gst/gdp/gstgdpdepay.c
index d3071a75..69098995 100644
--- a/gst/gdp/gstgdpdepay.c
+++ b/gst/gdp/gstgdpdepay.c
@@ -119,10 +119,6 @@ gst_gdp_depay_init (GstGDPDepay * gdpdepay, GstGDPDepayClass * g_class)
{
gdpdepay->sinkpad =
gst_pad_new_from_static_template (&gdp_depay_sink_template, "sink");
- gst_pad_set_setcaps_function (gdpdepay->sinkpad,
- GST_DEBUG_FUNCPTR (gst_pad_proxy_setcaps));
- gst_pad_set_getcaps_function (gdpdepay->sinkpad,
- GST_DEBUG_FUNCPTR (gst_pad_proxy_getcaps));
gst_pad_set_chain_function (gdpdepay->sinkpad,
GST_DEBUG_FUNCPTR (gst_gdp_depay_chain));
gst_element_add_pad (GST_ELEMENT (gdpdepay), gdpdepay->sinkpad);