mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 04:05:34 +00:00
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:
parent
2270883f00
commit
3030cec8b5
2 changed files with 6 additions and 4 deletions
|
@ -91,11 +91,12 @@ struct _GstQueue {
|
||||||
|
|
||||||
GTimeVal *timeval; /* the timeout for the queue locking */
|
GTimeVal *timeval; /* the timeout for the queue locking */
|
||||||
GQueue *events; /* upstream events get decoupled here */
|
GQueue *events; /* upstream events get decoupled here */
|
||||||
GMutex *event_lock; /* lock when handling the events queue */
|
|
||||||
|
|
||||||
GstCaps *negotiated_caps;
|
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 {
|
struct _GstQueueClass {
|
||||||
|
|
|
@ -91,11 +91,12 @@ struct _GstQueue {
|
||||||
|
|
||||||
GTimeVal *timeval; /* the timeout for the queue locking */
|
GTimeVal *timeval; /* the timeout for the queue locking */
|
||||||
GQueue *events; /* upstream events get decoupled here */
|
GQueue *events; /* upstream events get decoupled here */
|
||||||
GMutex *event_lock; /* lock when handling the events queue */
|
|
||||||
|
|
||||||
GstCaps *negotiated_caps;
|
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 {
|
struct _GstQueueClass {
|
||||||
|
|
Loading…
Reference in a new issue