Change gst_pad_proxy_link() to gst_pad_try_set_caps()

Original commit message from CVS:
Change gst_pad_proxy_link() to gst_pad_try_set_caps()
This commit is contained in:
David Schleef 2003-12-31 08:41:48 +00:00
parent e095323df1
commit 3fee320b5d
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2003-12-31 David Schleef <ds@schleef.org>
* gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
* gst/udp/gstudpsrc.c: (gst_udpsrc_get):
Change gst_pad_proxy_link() to gst_pad_try_set_caps()
2003-12-30 David Schleef <ds@schleef.org>
* ext/ffmpeg/gstffmpegcolorspace.c:

View file

@ -238,7 +238,7 @@ gst_tcpsrc_get (GstPad *pad)
caps = gst_caps_load_thyself(doc->xmlRootNode);
/* foward the connect, we don't signal back the result here... */
gst_pad_proxy_link (tcpsrc->srcpad, caps);
gst_pad_try_set_caps (tcpsrc->srcpad, caps);
}
g_free (buf);