add padding
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 15 Mar 2004 22:42:34 +0000 (22:42 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 15 Mar 2004 22:42:34 +0000 (22:42 +0000)
Original commit message from CVS:
add padding

ChangeLog
gst/gstcaps.h
gst/gststructure.h

index 92dea4d..c5b3a8b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * gst/gstcaps.h:
+       * gst/gststructure.h:
+          add reserved padding
+
 2004-03-15  Benjamin Otte  <otte@gnome.org>
 
        * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
index 65f4e71..e64b610 100644 (file)
@@ -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;
index 99eb0ae..eeeb00b 100644 (file)
@@ -41,6 +41,8 @@ struct _GstStructure {
   GQuark name;
 
   GArray *fields;
+
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 GType                   gst_structure_get_type             (void) G_GNUC_CONST;