mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
connect fix
Original commit message from CVS: connect fix
This commit is contained in:
parent
d3493efe6a
commit
3ac1f4da2d
1 changed files with 2 additions and 2 deletions
|
@ -247,7 +247,7 @@ gst_mplex_init (GstMPlex *mplex)
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstPadLinkReturn
|
static GstPadLinkReturn
|
||||||
gst_mplex_video_connect (GstPad *pad, GstCaps *caps)
|
gst_mplex_video_link (GstPad *pad, GstCaps *caps)
|
||||||
{
|
{
|
||||||
GstMPlex *mplex;
|
GstMPlex *mplex;
|
||||||
gint version;
|
gint version;
|
||||||
|
@ -301,7 +301,7 @@ gst_mplex_request_new_pad (GstElement *element,
|
||||||
|
|
||||||
pad = gst_pad_new (name, GST_PAD_SINK);
|
pad = gst_pad_new (name, GST_PAD_SINK);
|
||||||
/* we still need to figure out the mpeg version */
|
/* 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);
|
g_free (name);
|
||||||
|
|
||||||
stream->type = GST_MPLEX_STREAM_UNKOWN;
|
stream->type = GST_MPLEX_STREAM_UNKOWN;
|
||||||
|
|
Loading…
Reference in a new issue