From 34c97c0c6f64052953ead4ae734746597f1a97c2 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Tue, 30 Jun 2009 15:13:44 +0200 Subject: videomixer: Remove unused link/unlink pad methods --- gst/videomixer/videomixer.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'gst/videomixer') diff --git a/gst/videomixer/videomixer.c b/gst/videomixer/videomixer.c index e782a671..997aa20a 100644 --- a/gst/videomixer/videomixer.c +++ b/gst/videomixer/videomixer.c @@ -388,26 +388,11 @@ gst_videomixer_pad_sink_acceptcaps (GstPad * pad, GstCaps * vscaps) return ret; } -static void -gst_videomixer_pad_link (GstPad * pad, GstPad * peer, gpointer data) -{ - GST_DEBUG_OBJECT (pad, "connected"); -} -static void -gst_videomixer_pad_unlink (GstPad * pad, GstPad * peer, gpointer data) -{ - GST_DEBUG_OBJECT (pad, "unlinked"); -} static void gst_videomixer_pad_init (GstVideoMixerPad * mixerpad) { - g_signal_connect (mixerpad, "linked", - G_CALLBACK (gst_videomixer_pad_link), mixerpad); - g_signal_connect (mixerpad, "unlinked", - G_CALLBACK (gst_videomixer_pad_unlink), mixerpad); - /* setup some pad functions */ gst_pad_set_setcaps_function (GST_PAD (mixerpad), gst_videomixer_pad_sink_setcaps); -- cgit