mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
gst/gstghostpad.c: At least get the chain function correct, needs more fixing.
Original commit message from CVS: * gst/gstghostpad.c: (gst_proxy_pad_do_chain): At least get the chain function correct, needs more fixing.
This commit is contained in:
parent
97194517fe
commit
2d63826a90
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-06-25 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/gstghostpad.c: (gst_proxy_pad_do_chain):
|
||||
At least get the chain function correct, needs more
|
||||
fixing.
|
||||
|
||||
2005-06-25 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
|
||||
|
|
|
@ -186,7 +186,7 @@ gst_proxy_pad_do_chain (GstPad * pad, GstBuffer * buffer)
|
|||
|
||||
g_return_val_if_fail (target != NULL, GST_FLOW_UNEXPECTED);
|
||||
|
||||
return target->chainfunc (target, buffer);
|
||||
return gst_pad_chain (target, buffer);
|
||||
}
|
||||
|
||||
static GstFlowReturn
|
||||
|
|
Loading…
Reference in a new issue