diff -r 567bb019e3e3 -r 7e817e7e631c gstreamer_core/gst/gstbin.h --- a/gstreamer_core/gst/gstbin.h Tue Aug 31 15:30:33 2010 +0300 +++ b/gstreamer_core/gst/gstbin.h Wed Sep 01 12:16:41 2010 +0100 @@ -130,9 +130,8 @@ * Subclasses can override the @add_element and @remove_element to * update the list of children in the bin. * - * The @handle_message method can be overridden to implement custom - * message handling. @handle_message takes ownership of the message, just like - * #gst_element_post_message. + * The @handle_message method can be overriden to implement custom + * message handling. */ struct _GstBinClass { GstElementClass parent_class; @@ -152,11 +151,7 @@ void (*handle_message) (GstBin *bin, GstMessage *message); /*< private >*/ - /* signal added 0.10.22 */ - gboolean (*do_latency) (GstBin *bin); - - /*< private >*/ - gpointer _gst_reserved[GST_PADDING-1]; + gpointer _gst_reserved[GST_PADDING]; }; #ifdef __SYMBIAN32__ IMPORT_C @@ -232,14 +227,6 @@ GstIterator* gst_bin_iterate_all_by_interface (GstBin *bin, GType iface); -/* latency */ -#ifdef __SYMBIAN32__ -IMPORT_C -#endif - -gboolean gst_bin_recalculate_latency (GstBin * bin); - - G_END_DECLS