From 7f220280ae9aebc76ebff6da6baf8f54d45b992d Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 9 Oct 2003 01:57:54 +0000 Subject: add object and struct padding Original commit message from CVS: add object and struct padding --- gst-libs/gst/media-info/media-info.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'gst-libs/gst/media-info') diff --git a/gst-libs/gst/media-info/media-info.h b/gst-libs/gst/media-info/media-info.h index 942fbf63..8df0c2d9 100644 --- a/gst-libs/gst/media-info/media-info.h +++ b/gst-libs/gst/media-info/media-info.h @@ -24,22 +24,27 @@ #include typedef struct GstMediaInfoPriv GstMediaInfoPriv; +typedef struct _GstMediaInfo GstMediaInfo; +typedef struct _GstMediaInfoClass GstMediaInfoClass; -typedef struct +struct _GstMediaInfo { GObject parent; GstMediaInfoPriv *priv; -} GstMediaInfo; -typedef struct + GST_OBJECT_PADDING +}; + +struct _GstMediaInfoClass { GObjectClass parent_class; /* signals */ void (*media_info_signal) (GstMediaInfo *gst_media_info); -} GstMediaInfoClass; + GST_CLASS_PADDING +}; /* structure for "physical" stream, * which can contain multiple sequential ones */ -- cgit v1.2.1