summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/play/play.h
diff options
context:
space:
mode:
authorJulien Moutte <julien@moutte.net>2003-12-11 22:29:14 +0000
committerJulien Moutte <julien@moutte.net>2003-12-11 22:29:14 +0000
commitd2ef360eef07db87999fcccc2f8bc968744a042e (patch)
tree6bae96d22694c596faba1ea5032314b3a4f5eb9c /gst-libs/gst/play/play.h
parentaa9969dbcfca36106b6c9a37554221ecd621afd0 (diff)
downloadgst-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/play.h')
-rw-r--r--gst-libs/gst/play/play.h15
1 files changed, 3 insertions, 12 deletions
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;