diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2002-12-18 23:07:09 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2002-12-18 23:07:09 +0000 |
commit | bb9513547c3e92104abf0a4b96b51f92a7380af0 (patch) | |
tree | 328b51767861756d82af53f6cab0cb08cf06698e /gst | |
parent | eb84f3b7ad8d5ef5b8dd510b32ca8572bc78cc05 (diff) |
Fix caps nego
Original commit message from CVS:
Fix caps nego
Diffstat (limited to 'gst')
-rw-r--r-- | gst/udp/gstudpsrc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c index 950aa0d2..02da0a58 100644 --- a/gst/udp/gstudpsrc.c +++ b/gst/udp/gstudpsrc.c @@ -219,7 +219,8 @@ gst_udpsrc_get (GstPad *pad) doc = xmlParseMemory(buf, ret); caps = gst_caps_load_thyself(doc->xmlRootNode); - gst_pad_try_set_caps (udpsrc->srcpad, caps); + /* foward the connect, we don't signal back the result here... */ + gst_pad_proxy_connect (udpsrc->srcpad, caps); #endif g_free (buf); |