mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 01:45:33 +00:00
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:
parent
e7a671713f
commit
ee38ed3c9d
2 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||||
|
|
|
@ -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) \
|
||||||
|
|
Loading…
Reference in a new issue