gst/gsttypefind.h: Tabs to spaces, oh yes!
authorTim-Philipp Müller <tim@centricular.net>
Sun, 18 May 2008 18:53:50 +0000 (18:53 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Sun, 18 May 2008 18:53:50 +0000 (18:53 +0000)
Original commit message from CVS:
* gst/gsttypefind.h:
Tabs to spaces, oh yes!

ChangeLog
gst/gsttypefind.h

index 59b5369..c9ab2e5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2008-05-18  Tim-Philipp Müller  <tim.muller at collabora co uk>
 
+       * gst/gsttypefind.h:
+         Tabs to spaces, oh yes!
+
+2008-05-18  Tim-Philipp Müller  <tim.muller at collabora co uk>
+
        * tests/check/gst/gstcaps.c: (test_intersect2), (gst_caps_suite):
          Add David's and Benjamin's tests for array intersection to the
          unit test suite (#147931).
index c852b02..5b613d7 100644 (file)
@@ -29,7 +29,7 @@
 
 G_BEGIN_DECLS
 
-#define GST_TYPE_TYPE_FIND     (gst_type_find_get_type())
+#define GST_TYPE_TYPE_FIND  (gst_type_find_get_type())
 
 typedef struct _GstTypeFind GstTypeFind;
 
@@ -72,42 +72,45 @@ typedef enum {
  */
 struct _GstTypeFind {
   /* private to the caller of the typefind function */
-  guint8 *     (* peek)        (gpointer               data,
-                                gint64                 offset,
-                                guint                  size);
-  void         (* suggest)     (gpointer               data,
-                                guint                  probability,
-                                const GstCaps *        caps);
+  guint8 *  (* peek)       (gpointer         data,
+                            gint64           offset,
+                            guint            size);
 
-  gpointer     data;
+  void      (* suggest)    (gpointer         data,
+                            guint            probability,
+                            const GstCaps *  caps);
+
+  gpointer     data;
 
   /* optional */
-  guint64      (* get_length)  (gpointer               data);
+  guint64   (* get_length) (gpointer data);
 
   /* <private> */
   gpointer _gst_reserved[GST_PADDING];
 };
 
-GType          gst_type_find_get_type                  (void);
+GType     gst_type_find_get_type   (void);
 
 /* typefind function interface */
-guint8 *       gst_type_find_peek                      (GstTypeFind *          find,
-                                                        gint64                 offset,
-                                                        guint                  size);
-void           gst_type_find_suggest                   (GstTypeFind *          find,
-                                                        guint                  probability,
-                                                        const GstCaps *        caps);
-guint64                gst_type_find_get_length                (GstTypeFind *          find);
+guint8 *  gst_type_find_peek       (GstTypeFind   * find,
+                                    gint64          offset,
+                                    guint           size);
+
+void      gst_type_find_suggest    (GstTypeFind   * find,
+                                    guint           probability,
+                                    const GstCaps * caps);
+
+guint64   gst_type_find_get_length (GstTypeFind   * find);
 
 /* registration interface */
-gboolean       gst_type_find_register                  (GstPlugin *            plugin,
-                                                        const gchar *          name,
-                                                        guint                  rank,
-                                                        GstTypeFindFunction    func,
-                                                        gchar **               extensions,
-                                                        const GstCaps *        possible_caps,
-                                                        gpointer               data,
-                                                        GDestroyNotify         data_notify);
+gboolean  gst_type_find_register   (GstPlugin            * plugin,
+                                    const gchar          * name,
+                                    guint                  rank,
+                                    GstTypeFindFunction    func,
+                                    gchar               ** extensions,
+                                    const GstCaps        * possible_caps,
+                                    gpointer               data,
+                                    GDestroyNotify         data_notify);
 
 G_END_DECLS