gst-libs/gst/interfaces/mixer.h: Add padding vars in place of the signal pointers...
authorJan Schmidt <thaytan@mad.scientist.com>
Sat, 21 Jul 2007 09:56:09 +0000 (09:56 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Sat, 21 Jul 2007 09:56:09 +0000 (09:56 +0000)
Original commit message from CVS:
* gst-libs/gst/interfaces/mixer.h:
Add padding vars in place of the signal pointers
when building with DISABLE_DEPRECATED so that the
interface structure doesn't change size.

ChangeLog
gst-libs/gst/interfaces/mixer.h

index 4a109a6..22cdc6c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-07-21  Jan Schmidt  <thaytan@noraisin.net>
+
+       * gst-libs/gst/interfaces/mixer.h:
+       Add padding vars in place of the signal pointers
+       when building with DISABLE_DEPRECATED so that the
+       interface structure doesn't change size.
+
 2007-07-20  Jan Schmidt  <thaytan@noraisin.net>
 
        * docs/libs/gst-plugins-base-libs-sections.txt:
index 7bc77b2..cfb605c 100644 (file)
@@ -123,6 +123,8 @@ struct _GstMixerClass {
   void (* volume_changed) (GstMixer      *mixer,
                            GstMixerTrack *channel,
                            gint          *volumes);
+#else
+  gpointer padding1[3];
 #endif /* not GST_DISABLE_DEPRECATED */
 
   void          (* set_option)     (GstMixer      *mixer,
@@ -135,6 +137,8 @@ struct _GstMixerClass {
   void (* option_changed) (GstMixer      *mixer,
                            GstMixerOptions *opts,
                            gchar   *option);
+#else
+  gpointer padding2;
 #endif /* not GST_DISABLE_DEPRECATED */
 
   GstMixerFlags (* get_mixer_flags) (GstMixer *mixer);