gstreamer_core/libs/gst/base/gstadapter.h
branchRCL_3
changeset 30 7e817e7e631c
parent 29 567bb019e3e3
--- a/gstreamer_core/libs/gst/base/gstadapter.h	Tue Aug 31 15:30:33 2010 +0300
+++ b/gstreamer_core/libs/gst/base/gstadapter.h	Wed Sep 01 12:16:41 2010 +0100
@@ -40,7 +40,6 @@
 
 typedef struct _GstAdapter GstAdapter;
 typedef struct _GstAdapterClass GstAdapterClass;
-typedef struct _GstAdapterPrivate GstAdapterPrivate;
 
 /**
  * GstAdapter:
@@ -61,14 +60,10 @@
   guint		assembled_size;
   guint		assembled_len;
 
-  /* ABI added */
   /* Remember where the end of our buffer list is to
    * speed up the push */
   GSList *buflist_end;
-
-  GstAdapterPrivate *priv;
-
-  gpointer _gst_reserved[GST_PADDING - 2];
+  gpointer _gst_reserved[GST_PADDING - 1];
 };
 
 struct _GstAdapterClass {
@@ -81,11 +76,6 @@
 IMPORT_C
 #endif
 
-GType			gst_adapter_get_type		(void);
-#ifdef __SYMBIAN32__
-IMPORT_C
-#endif
-
 
 GstAdapter *		gst_adapter_new			(void);
 #ifdef __SYMBIAN32__
@@ -139,14 +129,7 @@
 IMPORT_C
 #endif
 
-GstClockTime            gst_adapter_prev_timestamp      (GstAdapter *adapter, guint64 *distance);
-#ifdef __SYMBIAN32__
-IMPORT_C
-#endif
-
-guint                   gst_adapter_masked_scan_uint32  (GstAdapter * adapter, guint32 mask,
-                                                         guint32 pattern, guint offset, guint size);
-
+GType			gst_adapter_get_type		(void);
 
 G_END_DECLS