summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2009-09-03 19:06:28 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2009-09-07 18:32:10 +0200
commit8a19dc610e77dd0dabe99487b51a3b123bd4fd6c (patch)
tree8c9c25e9680aa0a425d8f3d4eadef2a9bfe587fe
parentfceba1d6fe264ba1f003e370eb3e56449cf9e150 (diff)
adapter: fix whitespace
-rw-r--r--libs/gst/base/gstadapter.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/libs/gst/base/gstadapter.h b/libs/gst/base/gstadapter.h
index 49e408e0fa..2cef11656f 100644
--- a/libs/gst/base/gstadapter.h
+++ b/libs/gst/base/gstadapter.h
@@ -49,17 +49,17 @@ typedef struct _GstAdapterPrivate GstAdapterPrivate;
* The opaque #GstAdapter data structure.
*/
struct _GstAdapter {
- GObject object;
+ GObject object;
/*< private >*/
- GSList * buflist;
- guint size;
- guint skip;
+ GSList * buflist;
+ guint size;
+ guint skip;
/* we keep state of assembled pieces */
- guint8 * assembled_data;
- guint assembled_size;
- guint assembled_len;
+ guint8 * assembled_data;
+ guint assembled_size;
+ guint assembled_len;
/* ABI added */
/* Remember where the end of our buffer list is to
@@ -72,26 +72,26 @@ struct _GstAdapter {
};
struct _GstAdapterClass {
- GObjectClass parent_class;
+ GObjectClass parent_class;
/*< private >*/
gpointer _gst_reserved[GST_PADDING];
};
-GType gst_adapter_get_type (void);
+GType gst_adapter_get_type (void);
-GstAdapter * gst_adapter_new (void);
+GstAdapter * gst_adapter_new (void);
-void gst_adapter_clear (GstAdapter *adapter);
-void gst_adapter_push (GstAdapter *adapter, GstBuffer* buf);
-const guint8 * gst_adapter_peek (GstAdapter *adapter, guint size);
-void gst_adapter_copy (GstAdapter *adapter, guint8 *dest,
+void gst_adapter_clear (GstAdapter *adapter);
+void gst_adapter_push (GstAdapter *adapter, GstBuffer* buf);
+const guint8 * gst_adapter_peek (GstAdapter *adapter, guint size);
+void gst_adapter_copy (GstAdapter *adapter, guint8 *dest,
guint offset, guint size);
-void gst_adapter_flush (GstAdapter *adapter, guint flush);
-guint8* gst_adapter_take (GstAdapter *adapter, guint nbytes);
-GstBuffer* gst_adapter_take_buffer (GstAdapter *adapter, guint nbytes);
-guint gst_adapter_available (GstAdapter *adapter);
-guint gst_adapter_available_fast (GstAdapter *adapter);
+void gst_adapter_flush (GstAdapter *adapter, guint flush);
+guint8* gst_adapter_take (GstAdapter *adapter, guint nbytes);
+GstBuffer* gst_adapter_take_buffer (GstAdapter *adapter, guint nbytes);
+guint gst_adapter_available (GstAdapter *adapter);
+guint gst_adapter_available_fast (GstAdapter *adapter);
GstClockTime gst_adapter_prev_timestamp (GstAdapter *adapter, guint64 *distance);