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:
Wim Taymans 2005-06-25 19:53:02 +00:00
parent 97194517fe
commit 2d63826a90
2 changed files with 7 additions and 1 deletions

View file

@ -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),

View file

@ -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