From 982e1f69c1672466d0f503ff9a48fe00a7482598 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 15 Mar 2004 22:42:34 +0000 Subject: [PATCH] add padding Original commit message from CVS: add padding --- ChangeLog | 6 ++++++ gst/gstcaps.h | 3 +++ gst/gststructure.h | 2 ++ 3 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 92dea4d12a..c5b3a8b7a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-03-15 Thomas Vander Stichele + + * gst/gstcaps.h: + * gst/gststructure.h: + add reserved padding + 2004-03-15 Benjamin Otte * gst/elements/gstfdsrc.c: (gst_fdsrc_get): diff --git a/gst/gstcaps.h b/gst/gstcaps.h index 65f4e71ccf..e64b6106aa 100644 --- a/gst/gstcaps.h +++ b/gst/gstcaps.h @@ -59,11 +59,14 @@ struct _GstCaps { guint16 flags; GPtrArray *structs; + + gpointer _gst_reserved[GST_PADDING]; }; struct _GstStaticCaps { GstCaps caps; const char *string; + gpointer _gst_reserved[GST_PADDING]; }; GType gst_caps_get_type (void) G_GNUC_CONST; diff --git a/gst/gststructure.h b/gst/gststructure.h index 99eb0ae6b1..eeeb00b284 100644 --- a/gst/gststructure.h +++ b/gst/gststructure.h @@ -41,6 +41,8 @@ struct _GstStructure { GQuark name; GArray *fields; + + gpointer _gst_reserved[GST_PADDING]; }; GType gst_structure_get_type (void) G_GNUC_CONST;