mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
interfaces: fix ABI class padding after the recent changes
This commit is contained in:
parent
9a627ed071
commit
0cb4ccb1f0
2 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ struct _GstColorBalanceClass {
|
||||||
GstColorBalanceType (*get_balance_type) (GstColorBalance *balance);
|
GstColorBalanceType (*get_balance_type) (GstColorBalance *balance);
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gpointer _gst_reserved[GST_PADDING];
|
gpointer _gst_reserved[GST_PADDING-1];
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_color_balance_get_type (void);
|
GType gst_color_balance_get_type (void);
|
||||||
|
|
|
@ -172,7 +172,7 @@ struct _GstMixerClass {
|
||||||
GstMixerType (* get_mixer_type) (GstMixer *mixer);
|
GstMixerType (* get_mixer_type) (GstMixer *mixer);
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gpointer _gst_reserved[GST_PADDING];
|
gpointer _gst_reserved[GST_PADDING-2];
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_mixer_get_type (void);
|
GType gst_mixer_get_type (void);
|
||||||
|
|
Loading…
Reference in a new issue