Original commit message from CVS:
* gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
(gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
(gst_pad_pull_range), (gst_static_pad_template_get_caps),
(gst_pad_start_task), (gst_pad_pause_task), (gst_pad_stop_task):
* gst/gstpad.h:
Added stubs for unimplemented functions.
+2005-04-25 Wim Taymans <wim@fluendo.com>
+
+ * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
+ (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
+ (gst_pad_pull_range), (gst_static_pad_template_get_caps),
+ (gst_pad_start_task), (gst_pad_pause_task), (gst_pad_stop_task):
+ * gst/gstpad.h:
+ Added stubs for unimplemented functions.
+
2005-04-24 David Schleef <ds@schleef.org>
* gst/gstpad.h: Disable some unimplemented functions. Wim,
return pad->element_private;
}
+gboolean
+gst_pad_start_task (GstPad * pad)
+{
+ g_warning ("implement gst_pad_start_task()");
+ return FALSE;
+}
+
+gboolean
+gst_pad_pause_task (GstPad * pad)
+{
+ g_warning ("implement gst_pad_pause_task()");
+ return FALSE;
+}
+
+gboolean
+gst_pad_stop_task (GstPad * pad)
+{
+ g_warning ("implement gst_pad_stop_task()");
+ return FALSE;
+}
+
/***** ghost pads *****/
GType _gst_ghost_pad_type = 0;
gboolean gst_pad_send_event (GstPad *pad, GstEvent *event);
gboolean gst_pad_event_default (GstPad *pad, GstEvent *event);
-#if 0
/* pad tasks */
gboolean gst_pad_start_task (GstPad *pad);
gboolean gst_pad_pause_task (GstPad *pad);
gboolean gst_pad_stop_task (GstPad *pad);
-#endif
/* convert/query/format functions */
void gst_pad_set_formats_function (GstPad *pad,