From 1cb711c1aea78a473ce021ba7de2bec147713e97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 28 Oct 2011 13:02:19 +0200 Subject: [PATCH] bitreader: Add padding --- libs/gst/base/gstbitreader.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/gst/base/gstbitreader.h b/libs/gst/base/gstbitreader.h index e42e3bfd9e..d5325e7c36 100644 --- a/libs/gst/base/gstbitreader.h +++ b/libs/gst/base/gstbitreader.h @@ -44,6 +44,9 @@ typedef struct { guint byte; /* Byte position */ guint bit; /* Bit position in the current byte */ + + /* < private > */ + gpointer _gst_reserved[GST_PADDING]; } GstBitReader; GstBitReader * gst_bit_reader_new (const guint8 *data, guint size);