summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2009-06-30 15:13:44 +0200
committerEdward Hervey <bilboed@bilboed.com>2009-07-10 14:37:16 +0200
commit34c97c0c6f64052953ead4ae734746597f1a97c2 (patch)
treed644435892f21b525dc791123e73a7c913c3c22a
parentb02949faeb1d85582c8a42450f83b80cd81329b8 (diff)
videomixer: Remove unused link/unlink pad methods
-rw-r--r--gst/videomixer/videomixer.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gst/videomixer/videomixer.c b/gst/videomixer/videomixer.c
index e782a671b..997aa20ae 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);