diff options
author | Julien Moutte <julien@moutte.net> | 2003-12-11 22:29:14 +0000 |
---|---|---|
committer | Julien Moutte <julien@moutte.net> | 2003-12-11 22:29:14 +0000 |
commit | d2ef360eef07db87999fcccc2f8bc968744a042e (patch) | |
tree | 6bae96d22694c596faba1ea5032314b3a4f5eb9c /gst-libs/gst/play/gstplay.h | |
parent | aa9969dbcfca36106b6c9a37554221ecd621afd0 (diff) | |
download | gst-plugins-bad-d2ef360eef07db87999fcccc2f8bc968744a042e.tar.gz gst-plugins-bad-d2ef360eef07db87999fcccc2f8bc968744a042e.tar.bz2 gst-plugins-bad-d2ef360eef07db87999fcccc2f8bc968744a042e.zip |
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. :)
Diffstat (limited to 'gst-libs/gst/play/gstplay.h')
-rw-r--r-- | gst-libs/gst/play/gstplay.h | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/gst-libs/gst/play/gstplay.h b/gst-libs/gst/play/gstplay.h index 3b5610c1..4d003407 100644 --- a/gst-libs/gst/play/gstplay.h +++ b/gst-libs/gst/play/gstplay.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; |