From 0cb4ccb1f09d39820682e052fc106f5fd7fa1309 Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Fri, 24 Feb 2012 21:37:00 +0100 Subject: [PATCH] interfaces: fix ABI class padding after the recent changes --- gst-libs/gst/interfaces/colorbalance.h | 2 +- gst-libs/gst/interfaces/mixer.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/interfaces/colorbalance.h b/gst-libs/gst/interfaces/colorbalance.h index fd8ceaa..9f0a1cd 100644 --- a/gst-libs/gst/interfaces/colorbalance.h +++ b/gst-libs/gst/interfaces/colorbalance.h @@ -102,7 +102,7 @@ struct _GstColorBalanceClass { GstColorBalanceType (*get_balance_type) (GstColorBalance *balance); /*< private >*/ - gpointer _gst_reserved[GST_PADDING]; + gpointer _gst_reserved[GST_PADDING-1]; }; GType gst_color_balance_get_type (void); diff --git a/gst-libs/gst/interfaces/mixer.h b/gst-libs/gst/interfaces/mixer.h index b2a199c..491c14c 100644 --- a/gst-libs/gst/interfaces/mixer.h +++ b/gst-libs/gst/interfaces/mixer.h @@ -172,7 +172,7 @@ struct _GstMixerClass { GstMixerType (* get_mixer_type) (GstMixer *mixer); /*< private >*/ - gpointer _gst_reserved[GST_PADDING]; + gpointer _gst_reserved[GST_PADDING-2]; }; GType gst_mixer_get_type (void); -- 2.7.4