From d2ef360eef07db87999fcccc2f8bc968744a042e Mon Sep 17 00:00:00 2001 From: Julien Moutte Date: Thu, 11 Dec 2003 22:29:14 +0000 Subject: Using private structure for members so that we have more chance that the header is frozen. :) Original commit message from CVS: Using private structure for members so that we have more chance that the header is frozen. :) --- gst-libs/gst/play/play.h | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'gst-libs/gst/play/play.h') diff --git a/gst-libs/gst/play/play.h b/gst-libs/gst/play/play.h index 3b5610c1..4d003407 100644 --- a/gst-libs/gst/play/play.h +++ b/gst-libs/gst/play/play.h @@ -38,26 +38,17 @@ typedef enum typedef struct _GstPlay GstPlay; typedef struct _GstPlayClass GstPlayClass; +typedef struct _GstPlayPrivate GstPlayPrivate; struct _GstPlay { GstPipeline pipeline; - char *location; - - GHashTable *elements; - - gint64 time_nanos; - gint64 length_nanos; - - gint get_length_attempt; - - guint tick_id; - guint length_id; + GstPlayPrivate *priv; gpointer _gst_reserved[GST_PADDING]; }; - + struct _GstPlayClass { GstPipelineClass parent_class; -- cgit v1.2.1