Fix binary compatibility with 0.8.{0-3}. Closes bug 148692.

Original commit message from CVS:
Fix binary compatibility with 0.8.{0-3}.  Closes bug 148692.
This commit is contained in:
David I. Lehn 2004-07-28 15:28:18 +00:00
parent 2270883f00
commit 3030cec8b5
2 changed files with 6 additions and 4 deletions

View file

@ -91,11 +91,12 @@ struct _GstQueue {
GTimeVal *timeval; /* the timeout for the queue locking */
GQueue *events; /* upstream events get decoupled here */
GMutex *event_lock; /* lock when handling the events queue */
GstCaps *negotiated_caps;
gpointer _gst_reserved[GST_PADDING];
GMutex *event_lock; /* lock when handling the events queue */
gpointer _gst_reserved[GST_PADDING - 1];
};
struct _GstQueueClass {

View file

@ -91,11 +91,12 @@ struct _GstQueue {
GTimeVal *timeval; /* the timeout for the queue locking */
GQueue *events; /* upstream events get decoupled here */
GMutex *event_lock; /* lock when handling the events queue */
GstCaps *negotiated_caps;
gpointer _gst_reserved[GST_PADDING];
GMutex *event_lock; /* lock when handling the events queue */
gpointer _gst_reserved[GST_PADDING - 1];
};
struct _GstQueueClass {