diff --git a/ChangeLog b/ChangeLog index 60be17e404..bae7e69aae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-06-23 Andy Wingo + * 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-utils.scm: A network clock simulator. Something of an algorithmic testbed before doing something in C. diff --git a/gst/gstghostpad.c b/gst/gstghostpad.c index 93404c8392..696400c1e6 100644 --- a/gst/gstghostpad.c +++ b/gst/gstghostpad.c @@ -247,7 +247,7 @@ gst_proxy_pad_do_setcaps (GstPad * pad, GstCaps * caps) g_return_val_if_fail (target != NULL, FALSE); - return target->setcapsfunc (target, caps); + return gst_pad_set_caps (target, caps); } #define SETFUNC(member, kind) \