summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2003-01-12 02:13:17 +0000
committerWim Taymans <wim.taymans@gmail.com>2003-01-12 02:13:17 +0000
commit3ac1f4da2df487d0a1697b6741b54524cd4c941c (patch)
treeef991aa49d99722d322eb5dc1e89a6eacb4c1020
parentd3493efe6a6bc3d2e0080804a3bf8525e3c9a915 (diff)
downloadgstreamer-plugins-bad-3ac1f4da2df487d0a1697b6741b54524cd4c941c.tar.gz
connect fix
Original commit message from CVS: connect fix
-rw-r--r--ext/mplex/gstmplex.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mplex/gstmplex.cc b/ext/mplex/gstmplex.cc
index 3801b58f6..dec67522b 100644
--- a/ext/mplex/gstmplex.cc
+++ b/ext/mplex/gstmplex.cc
@@ -247,7 +247,7 @@ gst_mplex_init (GstMPlex *mplex)
}
static GstPadLinkReturn
-gst_mplex_video_connect (GstPad *pad, GstCaps *caps)
+gst_mplex_video_link (GstPad *pad, GstCaps *caps)
{
GstMPlex *mplex;
gint version;
@@ -301,7 +301,7 @@ gst_mplex_request_new_pad (GstElement *element,
pad = gst_pad_new (name, GST_PAD_SINK);
/* we still need to figure out the mpeg version */
- gst_pad_set_connect_function (pad, gst_mplex_video_connect);
+ gst_pad_set_link_function (pad, gst_mplex_video_link);
g_free (name);
stream->type = GST_MPLEX_STREAM_UNKOWN;