dmabuf-allocator: Add missing padding in the class
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Fri, 18 Nov 2016 19:51:29 +0000 (14:51 -0500)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Fri, 18 Nov 2016 19:56:20 +0000 (14:56 -0500)
This class was made subclassable, though for future growth of the code,
it's better if we have some room for add class members. Using the small
padding since this is unlikely.

gst-libs/gst/allocators/gstdmabuf.h

index 653ce32..c6301da 100644 (file)
@@ -81,11 +81,17 @@ typedef struct _GstDmaBufAllocatorClass GstDmaBufAllocatorClass;
 struct _GstDmaBufAllocator
 {
   GstFdAllocator parent;
+
+  /*< private >*/
+  gpointer _gst_reserved[GST_PADDING];
 };
 
 struct _GstDmaBufAllocatorClass
 {
   GstFdAllocatorClass parent_class;
+
+  /*< private >*/
+  gpointer _gst_reserved[GST_PADDING];
 };