mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 04:05:34 +00:00
aggregator: make padding larger
Esp. the class structures, can't have enough spare space for virtual functions.
This commit is contained in:
parent
ced334d397
commit
5350d8c653
1 changed files with 3 additions and 3 deletions
|
@ -95,7 +95,7 @@ struct _GstAggregatorPadClass
|
|||
GstFlowReturn (*flush) (GstAggregatorPad * aggpad, GstAggregator * aggregator);
|
||||
|
||||
/*< private >*/
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
gpointer _gst_reserved[GST_PADDING_LARGE];
|
||||
};
|
||||
|
||||
GType gst_aggregator_pad_get_type (void);
|
||||
|
@ -142,7 +142,7 @@ struct _GstAggregator
|
|||
/* properties */
|
||||
gint64 latency;
|
||||
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
gpointer _gst_reserved[GST_PADDING_LARGE];
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -247,7 +247,7 @@ struct _GstAggregatorClass {
|
|||
GstClockTime (*get_next_time) (GstAggregator * aggregator);
|
||||
|
||||
/*< private >*/
|
||||
gpointer _gst_reserved[GST_PADDING];
|
||||
gpointer _gst_reserved[GST_PADDING_LARGE];
|
||||
};
|
||||
|
||||
/*************************
|
||||
|
|
Loading…
Reference in a new issue