From 8a19dc610e77dd0dabe99487b51a3b123bd4fd6c Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 3 Sep 2009 19:06:28 +0200 Subject: [PATCH] adapter: fix whitespace --- libs/gst/base/gstadapter.h | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/libs/gst/base/gstadapter.h b/libs/gst/base/gstadapter.h index 49e408e..2cef116 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); -- 2.7.4