gst/gstghostpad.c (gst_proxy_pad_do_setcaps): Call the full gst_pad_set_caps on the target, not just its setcaps() fu...

Original commit message from CVS:
2005-06-23  Andy Wingo  <wingo@pobox.com>

* gst/gstghostpad.c (gst_proxy_pad_do_setcaps): Call the full
gst_pad_set_caps on the target, not just its setcaps() function.
This commit is contained in:
Andy Wingo 2005-06-23 09:28:27 +00:00
parent e7a671713f
commit ee38ed3c9d
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2005-06-23 Andy Wingo <wingo@pobox.com> 2005-06-23 Andy Wingo <wingo@pobox.com>
* gst/gstghostpad.c (gst_proxy_pad_do_setcaps): Call the full
gst_pad_set_caps on the target, not just its setcaps() function.
* tests/network-clock.scm: * tests/network-clock.scm:
* tests/network-clock-utils.scm: A network clock simulator. * tests/network-clock-utils.scm: A network clock simulator.
Something of an algorithmic testbed before doing something in C. Something of an algorithmic testbed before doing something in C.

View file

@ -247,7 +247,7 @@ gst_proxy_pad_do_setcaps (GstPad * pad, GstCaps * caps)
g_return_val_if_fail (target != NULL, FALSE); g_return_val_if_fail (target != NULL, FALSE);
return target->setcapsfunc (target, caps); return gst_pad_set_caps (target, caps);
} }
#define SETFUNC(member, kind) \ #define SETFUNC(member, kind) \