mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
videomixer: Remove unused link/unlink pad methods
This commit is contained in:
parent
b02949faeb
commit
34c97c0c6f
1 changed files with 0 additions and 15 deletions
|
@ -388,26 +388,11 @@ gst_videomixer_pad_sink_acceptcaps (GstPad * pad, GstCaps * vscaps)
|
||||||
return ret;
|
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
|
static void
|
||||||
gst_videomixer_pad_init (GstVideoMixerPad * mixerpad)
|
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 */
|
/* setup some pad functions */
|
||||||
gst_pad_set_setcaps_function (GST_PAD (mixerpad),
|
gst_pad_set_setcaps_function (GST_PAD (mixerpad),
|
||||||
gst_videomixer_pad_sink_setcaps);
|
gst_videomixer_pad_sink_setcaps);
|
||||||
|
|
Loading…
Reference in a new issue