gst/gstghostpad.c: At least get the chain function correct, needs more fixing.
authorWim Taymans <wim.taymans@gmail.com>
Sat, 25 Jun 2005 19:53:02 +0000 (19:53 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Sat, 25 Jun 2005 19:53:02 +0000 (19:53 +0000)
Original commit message from CVS:
* gst/gstghostpad.c: (gst_proxy_pad_do_chain):
At least get the chain function correct, needs more
fixing.

ChangeLog
gst/gstghostpad.c

index 883ace2..1bb0118 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 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),
        (gst_basesink_handle_object), (gst_basesink_event),
        (gst_basesink_do_sync), (gst_basesink_handle_event),
index 8950b3d..cdad751 100644 (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