Merge remote-tracking branch 'origin/master' into 0.11
[platform/upstream/gstreamer.git] / gst / gstutils.h
index 96f2116..7bdc350 100644 (file)
@@ -31,9 +31,9 @@
 
 G_BEGIN_DECLS
 
-void           gst_util_set_value_from_string  (GValue *value, const gchar *value_str);
-void           gst_util_set_object_arg         (GObject *object, const gchar *name, const gchar *value);
-void           gst_util_dump_mem               (const guchar *mem, guint size);
+void            gst_util_set_value_from_string  (GValue *value, const gchar *value_str);
+void            gst_util_set_object_arg         (GObject *object, const gchar *name, const gchar *value);
+void            gst_util_dump_mem               (const guchar *mem, guint size);
 
 guint64         gst_util_gdouble_to_guint64     (gdouble value)  G_GNUC_CONST;
 gdouble         gst_util_guint64_to_gdouble     (guint64 value)  G_GNUC_CONST;
@@ -63,9 +63,9 @@ gdouble         gst_util_guint64_to_gdouble     (guint64 value)  G_GNUC_CONST;
 #define         gst_guint64_to_gdouble(value)   ((gdouble) (value))
 #endif
 
-guint64                gst_util_uint64_scale           (guint64 val, guint64 num, guint64 denom);
-guint64                gst_util_uint64_scale_round     (guint64 val, guint64 num, guint64 denom);
-guint64                gst_util_uint64_scale_ceil      (guint64 val, guint64 num, guint64 denom);
+guint64         gst_util_uint64_scale           (guint64 val, guint64 num, guint64 denom);
+guint64         gst_util_uint64_scale_round     (guint64 val, guint64 num, guint64 denom);
+guint64         gst_util_uint64_scale_ceil      (guint64 val, guint64 num, guint64 denom);
 
 guint64         gst_util_uint64_scale_int       (guint64 val, gint num, gint denom);
 guint64         gst_util_uint64_scale_int_round (guint64 val, gint num, gint denom);
@@ -74,170 +74,10 @@ guint64         gst_util_uint64_scale_int_ceil  (guint64 val, gint num, gint den
 guint32         gst_util_seqnum_next            (void);
 gint32          gst_util_seqnum_compare         (guint32 s1, guint32 s2);
 
-void           gst_print_pad_caps              (GString *buf, gint indent, GstPad *pad);
-void           gst_print_element_args          (GString *buf, gint indent, GstElement *element);
+void            gst_print_pad_caps              (GString *buf, gint indent, GstPad *pad);
+void            gst_print_element_args          (GString *buf, gint indent, GstElement *element);
 
 
-GType gst_type_register_static_full (GType parent_type,
-                                          const gchar       *type_name,
-                               guint              class_size,
-                               GBaseInitFunc      base_init,
-                               GBaseFinalizeFunc  base_finalize,
-                               GClassInitFunc     class_init,
-                               GClassFinalizeFunc class_finalize,
-                               gconstpointer      class_data,
-                               guint              instance_size,
-                               guint16            n_preallocs,
-                               GInstanceInitFunc  instance_init,
-                               const GTypeValueTable *value_table,
-                               GTypeFlags       flags);
-
-
-/* Macros for defining classes.  Ideas taken from Bonobo, which took theirs
-   from Nautilus and GOB. */
-
-/**
- * GST_BOILERPLATE_FULL:
- * @type: the name of the type struct
- * @type_as_function: the prefix for the functions
- * @parent_type: the parent type struct name
- * @parent_type_macro: the parent type macro
- * @additional_initializations: function pointer in the form of
- * void additional_initializations (GType type) that can be used for
- * initializing interfaces and the like
- *
- * Define the boilerplate type stuff to reduce typos and code size.  Defines
- * the get_type method and the parent_class static variable.
- *
- * <informalexample>
- * <programlisting>
- *   GST_BOILERPLATE_FULL (GstFdSink, gst_fdsink, GstElement, GST_TYPE_ELEMENT, _do_init);
- * </programlisting>
- * </informalexample>
- */
-#define GST_BOILERPLATE_FULL(type, type_as_function, parent_type, parent_type_macro, additional_initializations)       \
-                                                                       \
-static void type_as_function ## _base_init     (gpointer      g_class);        \
-static void type_as_function ## _class_init    (type ## Class *g_class);\
-static void type_as_function ## _init         (type          *object,  \
-                                                type ## Class *g_class);\
-static parent_type ## Class *parent_class = NULL;                      \
-static void                                                            \
-type_as_function ## _class_init_trampoline (gpointer g_class)          \
-{                                                                      \
-  parent_class = (parent_type ## Class *)                              \
-      g_type_class_peek_parent (g_class);                              \
-  type_as_function ## _class_init ((type ## Class *)g_class);          \
-}                                                                      \
-                                                                       \
-GType                                                                  \
-type_as_function ## _get_type (void)                                   \
-{                                                                      \
-  /* The typedef for GType may be gulong or gsize, depending on the    \
-   * system and whether the compiler is c++ or not. The g_once_init_*  \
-   * functions always take a gsize * though ... */                     \
-  static volatile gsize gonce_data = 0;                                        \
-  if (g_once_init_enter (&gonce_data)) {                               \
-    GType _type;                                                       \
-    _type = gst_type_register_static_full (parent_type_macro,           \
-        g_intern_static_string (#type),                                        \
-       sizeof (type ## Class),                                         \
-        type_as_function ## _base_init,                                        \
-        NULL,            /* base_finalize */                           \
-        (GClassInitFunc) type_as_function ## _class_init_trampoline,    \
-        NULL,            /* class_finalize */                          \
-        NULL,               /* class_data */                           \
-        sizeof (type),                                                 \
-        0,                  /* n_preallocs */                          \
-        (GInstanceInitFunc) type_as_function ## _init,                  \
-        NULL,                                                           \
-        (GTypeFlags) 0);                                               \
-    additional_initializations (_type);                                        \
-    g_once_init_leave (&gonce_data, (gsize) _type);                    \
-  }                                                                    \
-  return (GType) gonce_data;                                           \
-}
-
-#define __GST_DO_NOTHING(type) /* NOP */
-
-/**
- * GST_BOILERPLATE:
- * @type: the name of the type struct
- * @type_as_function: the prefix for the functions
- * @parent_type: the parent type struct name
- * @parent_type_macro: the parent type macro
- *
- * Define the boilerplate type stuff to reduce typos and code size.  Defines
- * the get_type method and the parent_class static variable.
- *
- * <informalexample>
- * <programlisting>
- *   GST_BOILERPLATE (GstFdSink, gst_fdsink, GstElement, GST_TYPE_ELEMENT);
- * </programlisting>
- * </informalexample>
- */
-#define GST_BOILERPLATE(type,type_as_function,parent_type,parent_type_macro)   \
-  GST_BOILERPLATE_FULL (type, type_as_function, parent_type, parent_type_macro,        \
-      __GST_DO_NOTHING)
-
-/* Like GST_BOILERPLATE, but makes the type 1) implement an interface, and 2)
- * implement GstImplementsInterface for that type
- *
- * After this you will need to implement interface_as_function ## _supported
- * and interface_as_function ## _interface_init
- */
-/**
- * GST_BOILERPLATE_WITH_INTERFACE:
- * @type: the name of the type struct
- * @type_as_function: the prefix for the functions
- * @parent_type: the parent type struct name
- * @parent_type_as_macro: the parent type macro
- * @interface_type: the name of the interface type struct
- * @interface_type_as_macro: the interface type macro
- * @interface_as_function: the interface function name prefix
- *
- * Like GST_BOILERPLATE, but makes the type 1) implement an interface, and 2)
- * implement GstImplementsInterface for that type.
- *
- * After this you will need to implement interface_as_function ## _supported
- * and interface_as_function ## _interface_init
- */
-#define GST_BOILERPLATE_WITH_INTERFACE(type, type_as_function,         \
-    parent_type, parent_type_as_macro, interface_type,                 \
-    interface_type_as_macro, interface_as_function)                    \
-                                                                        \
-static void interface_as_function ## _interface_init (interface_type ## Class *klass);  \
-static gboolean interface_as_function ## _supported (type *object, GType iface_type);   \
-                                                                        \
-static void                                                             \
-type_as_function ## _implements_interface_init (GstImplementsInterfaceClass *klass)     \
-{                                                                       \
-  klass->supported = (gboolean (*)(GstImplementsInterface*, GType))interface_as_function ## _supported;     \
-}                                                                       \
-                                                                        \
-static void                                                             \
-type_as_function ## _init_interfaces (GType type_var)                   \
-{                                                                       \
-  static const GInterfaceInfo implements_iface_info = {                 \
-    (GInterfaceInitFunc) type_as_function ## _implements_interface_init,\
-    NULL,                                                               \
-    NULL,                                                               \
-  };                                                                    \
-  static const GInterfaceInfo iface_info = {                            \
-    (GInterfaceInitFunc) interface_as_function ## _interface_init,      \
-    NULL,                                                               \
-    NULL,                                                               \
-  };                                                                    \
-                                                                        \
-  g_type_add_interface_static (type_var, GST_TYPE_IMPLEMENTS_INTERFACE, \
-      &implements_iface_info);                                          \
-  g_type_add_interface_static (type_var, interface_type_as_macro,      \
-      &iface_info);                                                    \
-}                                                                       \
-                                                                        \
-GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
-    parent_type_as_macro, type_as_function ## _init_interfaces)
-
 /**
  * GST_CALL_PARENT:
  * @parent_class_cast: the name of the class cast macro for the parent type
@@ -249,9 +89,9 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  * this macro is not to be used with things that return something, use
  * the _WITH_DEFAULT version for that
  */
-#define GST_CALL_PARENT(parent_class_cast, name, args)                 \
-       ((parent_class_cast(parent_class)->name != NULL) ?              \
-        parent_class_cast(parent_class)->name args : (void) 0)
+#define GST_CALL_PARENT(parent_class_cast, name, args)                  \
+        ((parent_class_cast(parent_class)->name != NULL) ?              \
+         parent_class_cast(parent_class)->name args : (void) 0)
 
 /**
  * GST_CALL_PARENT_WITH_DEFAULT:
@@ -264,8 +104,8 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  * evaluates to @def_return.
  */
 #define GST_CALL_PARENT_WITH_DEFAULT(parent_class_cast, name, args, def_return)\
-       ((parent_class_cast(parent_class)->name != NULL) ?              \
-        parent_class_cast(parent_class)->name args : def_return)
+        ((parent_class_cast(parent_class)->name != NULL) ?              \
+         parent_class_cast(parent_class)->name args : def_return)
 
 /* Define PUT and GET functions for unaligned memory */
 #define _GST_GET(__data, __idx, __size, __shift) \
@@ -280,14 +120,14 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Read a 64 bit unsigned integer value in big endian format from the memory buffer.
  */
-#define GST_READ_UINT64_BE(data)       (_GST_GET (data, 0, 64, 56) | \
-                                        _GST_GET (data, 1, 64, 48) | \
-                                        _GST_GET (data, 2, 64, 40) | \
-                                        _GST_GET (data, 3, 64, 32) | \
-                                        _GST_GET (data, 4, 64, 24) | \
-                                        _GST_GET (data, 5, 64, 16) | \
-                                        _GST_GET (data, 6, 64,  8) | \
-                                        _GST_GET (data, 7, 64,  0))
+#define GST_READ_UINT64_BE(data)        (_GST_GET (data, 0, 64, 56) | \
+                                         _GST_GET (data, 1, 64, 48) | \
+                                         _GST_GET (data, 2, 64, 40) | \
+                                         _GST_GET (data, 3, 64, 32) | \
+                                         _GST_GET (data, 4, 64, 24) | \
+                                         _GST_GET (data, 5, 64, 16) | \
+                                         _GST_GET (data, 6, 64,  8) | \
+                                         _GST_GET (data, 7, 64,  0))
 
 /**
  * GST_READ_UINT64_LE:
@@ -295,14 +135,14 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Read a 64 bit unsigned integer value in little endian format from the memory buffer.
  */
-#define GST_READ_UINT64_LE(data)       (_GST_GET (data, 7, 64, 56) | \
-                                        _GST_GET (data, 6, 64, 48) | \
-                                        _GST_GET (data, 5, 64, 40) | \
-                                        _GST_GET (data, 4, 64, 32) | \
-                                        _GST_GET (data, 3, 64, 24) | \
-                                        _GST_GET (data, 2, 64, 16) | \
-                                        _GST_GET (data, 1, 64,  8) | \
-                                        _GST_GET (data, 0, 64,  0))
+#define GST_READ_UINT64_LE(data)        (_GST_GET (data, 7, 64, 56) | \
+                                         _GST_GET (data, 6, 64, 48) | \
+                                         _GST_GET (data, 5, 64, 40) | \
+                                         _GST_GET (data, 4, 64, 32) | \
+                                         _GST_GET (data, 3, 64, 24) | \
+                                         _GST_GET (data, 2, 64, 16) | \
+                                         _GST_GET (data, 1, 64,  8) | \
+                                         _GST_GET (data, 0, 64,  0))
 
 /**
  * GST_READ_UINT32_BE:
@@ -310,10 +150,10 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Read a 32 bit unsigned integer value in big endian format from the memory buffer.
  */
-#define GST_READ_UINT32_BE(data)       (_GST_GET (data, 0, 32, 24) | \
-                                        _GST_GET (data, 1, 32, 16) | \
-                                        _GST_GET (data, 2, 32,  8) | \
-                                        _GST_GET (data, 3, 32,  0))
+#define GST_READ_UINT32_BE(data)        (_GST_GET (data, 0, 32, 24) | \
+                                         _GST_GET (data, 1, 32, 16) | \
+                                         _GST_GET (data, 2, 32,  8) | \
+                                         _GST_GET (data, 3, 32,  0))
 
 /**
  * GST_READ_UINT32_LE:
@@ -321,10 +161,10 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Read a 32 bit unsigned integer value in little endian format from the memory buffer.
  */
-#define GST_READ_UINT32_LE(data)       (_GST_GET (data, 3, 32, 24) | \
-                                        _GST_GET (data, 2, 32, 16) | \
-                                        _GST_GET (data, 1, 32,  8) | \
-                                        _GST_GET (data, 0, 32,  0))
+#define GST_READ_UINT32_LE(data)        (_GST_GET (data, 3, 32, 24) | \
+                                         _GST_GET (data, 2, 32, 16) | \
+                                         _GST_GET (data, 1, 32,  8) | \
+                                         _GST_GET (data, 0, 32,  0))
 
 /**
  * GST_READ_UINT24_BE:
@@ -334,9 +174,9 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Since: 0.10.22
  */
-#define GST_READ_UINT24_BE(data)       (_GST_GET (data, 0, 32, 16) | \
-                                        _GST_GET (data, 1, 32,  8) | \
-                                        _GST_GET (data, 2, 32,  0))
+#define GST_READ_UINT24_BE(data)        (_GST_GET (data, 0, 32, 16) | \
+                                         _GST_GET (data, 1, 32,  8) | \
+                                         _GST_GET (data, 2, 32,  0))
 
 /**
  * GST_READ_UINT24_LE:
@@ -346,9 +186,9 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Since: 0.10.22
  */
-#define GST_READ_UINT24_LE(data)       (_GST_GET (data, 2, 32, 16) | \
-                                        _GST_GET (data, 1, 32,  8) | \
-                                        _GST_GET (data, 0, 32,  0))
+#define GST_READ_UINT24_LE(data)        (_GST_GET (data, 2, 32, 16) | \
+                                         _GST_GET (data, 1, 32,  8) | \
+                                         _GST_GET (data, 0, 32,  0))
 
 /**
  * GST_READ_UINT16_BE:
@@ -356,8 +196,8 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Read a 16 bit unsigned integer value in big endian format from the memory buffer.
  */
-#define GST_READ_UINT16_BE(data)       (_GST_GET (data, 0, 16,  8) | \
-                                        _GST_GET (data, 1, 16,  0))
+#define GST_READ_UINT16_BE(data)        (_GST_GET (data, 0, 16,  8) | \
+                                         _GST_GET (data, 1, 16,  0))
 
 /**
  * GST_READ_UINT16_LE:
@@ -365,8 +205,8 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Read a 16 bit unsigned integer value in little endian format from the memory buffer.
  */
-#define GST_READ_UINT16_LE(data)       (_GST_GET (data, 1, 16,  8) | \
-                                        _GST_GET (data, 0, 16,  0))
+#define GST_READ_UINT16_LE(data)        (_GST_GET (data, 1, 16,  8) | \
+                                         _GST_GET (data, 0, 16,  0))
 
 /**
  * GST_READ_UINT8:
@@ -374,7 +214,7 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Read an 8 bit unsigned integer value from the memory buffer.
  */
-#define GST_READ_UINT8(data)           (_GST_GET (data, 0,  8,  0))
+#define GST_READ_UINT8(data)            (_GST_GET (data, 0,  8,  0))
 
 /**
  * GST_WRITE_UINT64_BE:
@@ -383,16 +223,16 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Store a 64 bit unsigned integer value in big endian format into the memory buffer.
  */
-#define GST_WRITE_UINT64_BE(data, num) do { \
-                                         _GST_PUT (data, 0, 64, 56, num); \
-                                         _GST_PUT (data, 1, 64, 48, num); \
-                                         _GST_PUT (data, 2, 64, 40, num); \
-                                         _GST_PUT (data, 3, 64, 32, num); \
-                                         _GST_PUT (data, 4, 64, 24, num); \
-                                         _GST_PUT (data, 5, 64, 16, num); \
-                                         _GST_PUT (data, 6, 64,  8, num); \
-                                         _GST_PUT (data, 7, 64,  0, num); \
-                                       } while (0)
+#define GST_WRITE_UINT64_BE(data, num)  do { \
+                                          _GST_PUT (data, 0, 64, 56, num); \
+                                          _GST_PUT (data, 1, 64, 48, num); \
+                                          _GST_PUT (data, 2, 64, 40, num); \
+                                          _GST_PUT (data, 3, 64, 32, num); \
+                                          _GST_PUT (data, 4, 64, 24, num); \
+                                          _GST_PUT (data, 5, 64, 16, num); \
+                                          _GST_PUT (data, 6, 64,  8, num); \
+                                          _GST_PUT (data, 7, 64,  0, num); \
+                                        } while (0)
 
 /**
  * GST_WRITE_UINT64_LE:
@@ -401,16 +241,16 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Store a 64 bit unsigned integer value in little endian format into the memory buffer.
  */
-#define GST_WRITE_UINT64_LE(data, num) do { \
-                                         _GST_PUT (data, 0, 64,  0, num); \
-                                         _GST_PUT (data, 1, 64,  8, num); \
-                                         _GST_PUT (data, 2, 64, 16, num); \
-                                         _GST_PUT (data, 3, 64, 24, num); \
-                                         _GST_PUT (data, 4, 64, 32, num); \
-                                         _GST_PUT (data, 5, 64, 40, num); \
-                                         _GST_PUT (data, 6, 64, 48, num); \
-                                         _GST_PUT (data, 7, 64, 56, num); \
-                                       } while (0)
+#define GST_WRITE_UINT64_LE(data, num)  do { \
+                                          _GST_PUT (data, 0, 64,  0, num); \
+                                          _GST_PUT (data, 1, 64,  8, num); \
+                                          _GST_PUT (data, 2, 64, 16, num); \
+                                          _GST_PUT (data, 3, 64, 24, num); \
+                                          _GST_PUT (data, 4, 64, 32, num); \
+                                          _GST_PUT (data, 5, 64, 40, num); \
+                                          _GST_PUT (data, 6, 64, 48, num); \
+                                          _GST_PUT (data, 7, 64, 56, num); \
+                                        } while (0)
 
 /**
  * GST_WRITE_UINT32_BE:
@@ -419,12 +259,12 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Store a 32 bit unsigned integer value in big endian format into the memory buffer.
  */
-#define GST_WRITE_UINT32_BE(data, num) do { \
-                                         _GST_PUT (data, 0, 32, 24, num); \
-                                         _GST_PUT (data, 1, 32, 16, num); \
-                                         _GST_PUT (data, 2, 32,  8, num); \
-                                         _GST_PUT (data, 3, 32,  0, num); \
-                                       } while (0)
+#define GST_WRITE_UINT32_BE(data, num)  do { \
+                                          _GST_PUT (data, 0, 32, 24, num); \
+                                          _GST_PUT (data, 1, 32, 16, num); \
+                                          _GST_PUT (data, 2, 32,  8, num); \
+                                          _GST_PUT (data, 3, 32,  0, num); \
+                                        } while (0)
 
 /**
  * GST_WRITE_UINT32_LE:
@@ -433,12 +273,12 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Store a 32 bit unsigned integer value in little endian format into the memory buffer.
  */
-#define GST_WRITE_UINT32_LE(data, num) do { \
-                                         _GST_PUT (data, 0, 32,  0, num); \
-                                         _GST_PUT (data, 1, 32,  8, num); \
-                                         _GST_PUT (data, 2, 32, 16, num); \
-                                         _GST_PUT (data, 3, 32, 24, num); \
-                                       } while (0)
+#define GST_WRITE_UINT32_LE(data, num)  do { \
+                                          _GST_PUT (data, 0, 32,  0, num); \
+                                          _GST_PUT (data, 1, 32,  8, num); \
+                                          _GST_PUT (data, 2, 32, 16, num); \
+                                          _GST_PUT (data, 3, 32, 24, num); \
+                                        } while (0)
 
 /**
  * GST_WRITE_UINT24_BE:
@@ -449,11 +289,11 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Since: 0.10.22
  */
-#define GST_WRITE_UINT24_BE(data, num) do { \
-                                         _GST_PUT (data, 0, 32,  16, num); \
-                                         _GST_PUT (data, 1, 32,  8, num); \
-                                         _GST_PUT (data, 2, 32,  0, num); \
-                                       } while (0)
+#define GST_WRITE_UINT24_BE(data, num)  do { \
+                                          _GST_PUT (data, 0, 32,  16, num); \
+                                          _GST_PUT (data, 1, 32,  8, num); \
+                                          _GST_PUT (data, 2, 32,  0, num); \
+                                        } while (0)
 
 /**
  * GST_WRITE_UINT24_LE:
@@ -464,11 +304,11 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Since: 0.10.22
  */
-#define GST_WRITE_UINT24_LE(data, num) do { \
-                                         _GST_PUT (data, 0, 32,  0, num); \
-                                         _GST_PUT (data, 1, 32,  8, num); \
-                                         _GST_PUT (data, 2, 32,  16, num); \
-                                       } while (0)
+#define GST_WRITE_UINT24_LE(data, num)  do { \
+                                          _GST_PUT (data, 0, 32,  0, num); \
+                                          _GST_PUT (data, 1, 32,  8, num); \
+                                          _GST_PUT (data, 2, 32,  16, num); \
+                                        } while (0)
 
 /**
  * GST_WRITE_UINT16_BE:
@@ -477,10 +317,10 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Store a 16 bit unsigned integer value in big endian format into the memory buffer.
  */
-#define GST_WRITE_UINT16_BE(data, num) do { \
-                                         _GST_PUT (data, 0, 16,  8, num); \
-                                         _GST_PUT (data, 1, 16,  0, num); \
-                                       } while (0)
+#define GST_WRITE_UINT16_BE(data, num)  do { \
+                                          _GST_PUT (data, 0, 16,  8, num); \
+                                          _GST_PUT (data, 1, 16,  0, num); \
+                                        } while (0)
 
 /**
  * GST_WRITE_UINT16_LE:
@@ -489,10 +329,10 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Store a 16 bit unsigned integer value in little endian format into the memory buffer.
  */
-#define GST_WRITE_UINT16_LE(data, num) do { \
-                                         _GST_PUT (data, 0, 16,  0, num); \
-                                         _GST_PUT (data, 1, 16,  8, num); \
-                                       } while (0)
+#define GST_WRITE_UINT16_LE(data, num)  do { \
+                                          _GST_PUT (data, 0, 16,  0, num); \
+                                          _GST_PUT (data, 1, 16,  8, num); \
+                                        } while (0)
 
 /**
  * GST_WRITE_UINT8:
@@ -501,11 +341,11 @@ GST_BOILERPLATE_FULL (type, type_as_function, parent_type,              \
  *
  * Store an 8 bit unsigned integer value into the memory buffer.
  */
-#define GST_WRITE_UINT8(data, num)     do { \
-                                         _GST_PUT (data, 0,  8,  0, num); \
-                                       } while (0)
+#define GST_WRITE_UINT8(data, num)      do { \
+                                          _GST_PUT (data, 0,  8,  0, num); \
+                                        } while (0)
 
-/* Float endianess conversion macros */
+/* Float endianness conversion macros */
 
 /* FIXME: Remove this once we depend on a GLib version with this */
 #ifndef GFLOAT_FROM_LE
@@ -992,39 +832,39 @@ GST_WRITE_DOUBLE_BE(guint8 *data, gdouble num)
  */
 #define GST_ROUND_DOWN_64(num) ((num)&(~63))
 
-void                   gst_object_default_error        (GstObject    * source,
-                                                        const GError * error,
-                                                        const gchar  * debug);
+void                    gst_object_default_error        (GstObject    * source,
+                                                         const GError * error,
+                                                         const gchar  * debug);
 
 /* element functions */
 void                    gst_element_create_all_pads     (GstElement *element);
 GstPad*                 gst_element_get_compatible_pad  (GstElement *element, GstPad *pad,
-                                                        const GstCaps *caps);
+                                                         const GstCaps *caps);
 
 GstPadTemplate*         gst_element_get_compatible_pad_template (GstElement *element, GstPadTemplate *compattempl);
 
-G_CONST_RETURN gchar*   gst_element_state_get_name      (GstState state);
-G_CONST_RETURN gchar *  gst_element_state_change_return_get_name (GstStateChangeReturn state_ret);
+const gchar*            gst_element_state_get_name      (GstState state);
+const gchar *           gst_element_state_change_return_get_name (GstStateChangeReturn state_ret);
 
-gboolean               gst_element_link                (GstElement *src, GstElement *dest);
-gboolean               gst_element_link_many           (GstElement *element_1,
-                                                        GstElement *element_2, ...) G_GNUC_NULL_TERMINATED;
-gboolean               gst_element_link_filtered       (GstElement * src,
+gboolean                gst_element_link                (GstElement *src, GstElement *dest);
+gboolean                gst_element_link_many           (GstElement *element_1,
+                                                         GstElement *element_2, ...) G_GNUC_NULL_TERMINATED;
+gboolean                gst_element_link_filtered       (GstElement * src,
                                                          GstElement * dest,
                                                          GstCaps *filter);
 void                    gst_element_unlink              (GstElement *src, GstElement *dest);
 void                    gst_element_unlink_many         (GstElement *element_1,
-                                                        GstElement *element_2, ...) G_GNUC_NULL_TERMINATED;
+                                                         GstElement *element_2, ...) G_GNUC_NULL_TERMINATED;
 
-gboolean               gst_element_link_pads           (GstElement *src, const gchar *srcpadname,
-                                                        GstElement *dest, const gchar *destpadname);
-gboolean               gst_element_link_pads_full      (GstElement *src, const gchar *srcpadname,
-                                                        GstElement *dest, const gchar *destpadname,
-                                                        GstPadLinkCheck flags);
+gboolean                gst_element_link_pads           (GstElement *src, const gchar *srcpadname,
+                                                         GstElement *dest, const gchar *destpadname);
+gboolean                gst_element_link_pads_full      (GstElement *src, const gchar *srcpadname,
+                                                         GstElement *dest, const gchar *destpadname,
+                                                         GstPadLinkCheck flags);
 void                    gst_element_unlink_pads         (GstElement *src, const gchar *srcpadname,
-                                                        GstElement *dest, const gchar *destpadname);
+                                                         GstElement *dest, const gchar *destpadname);
 
-gboolean               gst_element_link_pads_filtered  (GstElement * src, const gchar * srcpadname,
+gboolean                gst_element_link_pads_filtered  (GstElement * src, const gchar * srcpadname,
                                                          GstElement * dest, const gchar * destpadname,
                                                          GstCaps *filter);
 
@@ -1040,39 +880,37 @@ gboolean gst_element_factory_can_sink_any_caps (GstElementFactory *factory, cons
 gboolean gst_element_factory_can_src_any_caps  (GstElementFactory *factory, const GstCaps *caps);
 
 /* util query functions */
-gboolean                gst_element_query_position      (GstElement *element, GstFormat *format,
-                                                        gint64 *cur);
-gboolean                gst_element_query_duration      (GstElement *element, GstFormat *format,
-                                                        gint64 *duration);
+gboolean                gst_element_query_position      (GstElement *element, GstFormat format, gint64 *cur);
+gboolean                gst_element_query_duration      (GstElement *element, GstFormat format, gint64 *duration);
 gboolean                gst_element_query_convert       (GstElement *element, GstFormat src_format, gint64 src_val,
-                                                        GstFormat *dest_format, gint64 *dest_val);
+                                                         GstFormat dest_format, gint64 *dest_val);
 
 /* element class functions */
-void                   gst_element_class_install_std_props (GstElementClass * klass,
-                                                        const gchar * first_name, ...) G_GNUC_NULL_TERMINATED;
+void                    gst_element_class_install_std_props (GstElementClass * klass,
+                                                         const gchar * first_name, ...) G_GNUC_NULL_TERMINATED;
 
 /* pad functions */
-void                   gst_pad_use_fixed_caps          (GstPad *pad);
-GstCaps*               gst_pad_get_fixed_caps_func     (GstPad *pad);
-GstCaps*               gst_pad_proxy_getcaps           (GstPad * pad);
-gboolean               gst_pad_proxy_setcaps           (GstPad * pad, GstCaps * caps);
-
-GstElement*            gst_pad_get_parent_element      (GstPad *pad);
+void                    gst_pad_use_fixed_caps          (GstPad *pad);
+GstElement*             gst_pad_get_parent_element      (GstPad *pad);
 
 /* util query functions */
-gboolean                gst_pad_query_position          (GstPad *pad, GstFormat *format,
-                                                        gint64 *cur);
-gboolean                gst_pad_query_duration          (GstPad *pad, GstFormat *format,
-                                                        gint64 *duration);
+gboolean                gst_pad_proxy_query_accept_caps (GstPad *pad, GstQuery *query);
+gboolean                gst_pad_proxy_query_caps        (GstPad *pad, GstQuery *query);
+
+gboolean                gst_pad_query_position          (GstPad *pad, GstFormat format, gint64 *cur);
+gboolean                gst_pad_query_duration          (GstPad *pad, GstFormat format, gint64 *duration);
 gboolean                gst_pad_query_convert           (GstPad *pad, GstFormat src_format, gint64 src_val,
-                                                        GstFormat *dest_format, gint64 *dest_val);
+                                                         GstFormat dest_format, gint64 *dest_val);
+GstCaps *               gst_pad_query_caps              (GstPad *pad, GstCaps *filter);
+gboolean                gst_pad_query_accept_caps       (GstPad *pad, GstCaps *caps);
 
-gboolean                gst_pad_query_peer_position     (GstPad *pad, GstFormat *format,
-                                                        gint64 *cur);
-gboolean                gst_pad_query_peer_duration     (GstPad *pad, GstFormat *format,
-                                                        gint64 *duration);
-gboolean                gst_pad_query_peer_convert      (GstPad *pad, GstFormat src_format, gint64 src_val,
-                                                        GstFormat *dest_format, gint64 *dest_val);
+
+gboolean                gst_pad_peer_query_position     (GstPad *pad, GstFormat format, gint64 *cur);
+gboolean                gst_pad_peer_query_duration     (GstPad *pad, GstFormat format, gint64 *duration);
+gboolean                gst_pad_peer_query_convert      (GstPad *pad, GstFormat src_format, gint64 src_val,
+                                                         GstFormat dest_format, gint64 *dest_val);
+GstCaps *               gst_pad_peer_query_caps         (GstPad * pad, GstCaps *filter);
+gboolean                gst_pad_peer_query_accept_caps  (GstPad * pad, GstCaps *caps);
 
 /* bin functions */
 void                    gst_bin_add_many                (GstBin *bin, GstElement *element_1, ...) G_GNUC_NULL_TERMINATED;
@@ -1080,49 +918,8 @@ void                    gst_bin_remove_many             (GstBin *bin, GstElement
 GstPad *                gst_bin_find_unlinked_pad       (GstBin *bin, GstPadDirection direction);
 
 /* buffer functions */
-GstBuffer *            gst_buffer_merge                (GstBuffer * buf1, GstBuffer * buf2);
-GstBuffer *            gst_buffer_join                 (GstBuffer * buf1, GstBuffer * buf2);
-
-/* probes */
-gulong                 gst_pad_add_data_probe          (GstPad   * pad,
-                                                        GCallback  handler,
-                                                        gpointer   data);
-
-gulong                 gst_pad_add_data_probe_full     (GstPad       * pad,
-                                                        GCallback      handler,
-                                                        gpointer       data,
-                                                        GDestroyNotify notify);
-
-void                   gst_pad_remove_data_probe       (GstPad * pad, guint handler_id);
-
-gulong                 gst_pad_add_event_probe         (GstPad   * pad,
-                                                        GCallback  handler,
-                                                        gpointer   data);
-
-gulong                 gst_pad_add_event_probe_full    (GstPad       * pad,
-                                                        GCallback      handler,
-                                                        gpointer       data,
-                                                        GDestroyNotify notify);
-
-void                   gst_pad_remove_event_probe      (GstPad * pad, guint handler_id);
-
-gulong                 gst_pad_add_buffer_probe        (GstPad   * pad,
-                                                        GCallback  handler,
-                                                        gpointer   data);
-
-gulong                 gst_pad_add_buffer_probe_full   (GstPad       * pad,
-                                                        GCallback      handler,
-                                                        gpointer       data,
-                                                        GDestroyNotify notify);
-
-void                   gst_pad_remove_buffer_probe     (GstPad * pad, guint handler_id);
-
-/* tag emission utility functions */
-void                   gst_element_found_tags_for_pad  (GstElement * element,
-                                                        GstPad * pad,
-                                                        GstTagList * list);
-void                   gst_element_found_tags          (GstElement * element,
-                                                        GstTagList * list);
+GstBuffer *             gst_buffer_merge                (GstBuffer * buf1, GstBuffer * buf2);
+GstBuffer *             gst_buffer_join                 (GstBuffer * buf1, GstBuffer * buf2);
 
 /* parse utility functions */
 GstElement *            gst_parse_bin_from_description      (const gchar     * bin_description,
@@ -1153,29 +950,22 @@ typedef enum {
   GST_SEARCH_MODE_AFTER
 } GstSearchMode;
 
-gpointer                gst_util_array_binary_search      (gpointer array, guint num_elements,
-                                                           gsize element_size, GCompareDataFunc search_func,
-                                                          GstSearchMode mode, gconstpointer search_data,
-                                                          gpointer user_data);
+gpointer      gst_util_array_binary_search      (gpointer array, guint num_elements,
+                                                 gsize element_size, GCompareDataFunc search_func,
+                                                 GstSearchMode mode, gconstpointer search_data,
+                                                 gpointer user_data);
 
-gint gst_util_greatest_common_divisor (gint a, gint b);
-void gst_util_fraction_to_double (gint src_n, gint src_d, gdouble *dest);
-void gst_util_double_to_fraction (gdouble src, gint *dest_n, gint *dest_d);
-gboolean gst_util_fraction_multiply (gint a_n, gint a_d, gint b_n, gint b_d, gint *res_n, gint *res_d);
-gboolean gst_util_fraction_add (gint a_n, gint a_d, gint b_n, gint b_d, gint *res_n, gint *res_d);
-gint gst_util_fraction_compare (gint a_n, gint a_d, gint b_n, gint b_d);
+/* fraction operations */
+gint          gst_util_greatest_common_divisor  (gint a, gint b);
 
+void          gst_util_fraction_to_double       (gint src_n, gint src_d, gdouble *dest);
+void          gst_util_double_to_fraction       (gdouble src, gint *dest_n, gint *dest_d);
 
-/* sink message event
- *
- * FIXME: This should be in gstevent.h but can't because
- * it needs GstMessage and this would introduce circular
- * header includes. And forward declarations of typedefs
- * are unfortunately not possible. The implementation of
- * these functions is in gstevent.c.
- */
-GstEvent*       gst_event_new_sink_message      (GstMessage *msg);
-void            gst_event_parse_sink_message    (GstEvent *event, GstMessage **msg);
+gboolean      gst_util_fraction_multiply        (gint a_n, gint a_d, gint b_n, gint b_d,
+                                                 gint *res_n, gint *res_d);
+gboolean      gst_util_fraction_add             (gint a_n, gint a_d, gint b_n, gint b_d,
+                                                 gint *res_n, gint *res_d);
+gint          gst_util_fraction_compare         (gint a_n, gint a_d, gint b_n, gint b_d);
 
 
 G_END_DECLS