mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-01 21:18:52 +00:00
gst-libs/gst/interfaces/mixer.h: Add padding vars in place of the signal pointers when building with DISABLE_DEPRECAT...
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.
This commit is contained in:
parent
c161e29307
commit
0776d87e32
2 changed files with 11 additions and 0 deletions
|
@ -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>
|
2007-07-20 Jan Schmidt <thaytan@noraisin.net>
|
||||||
|
|
||||||
* docs/libs/gst-plugins-base-libs-sections.txt:
|
* docs/libs/gst-plugins-base-libs-sections.txt:
|
||||||
|
|
|
@ -123,6 +123,8 @@ struct _GstMixerClass {
|
||||||
void (* volume_changed) (GstMixer *mixer,
|
void (* volume_changed) (GstMixer *mixer,
|
||||||
GstMixerTrack *channel,
|
GstMixerTrack *channel,
|
||||||
gint *volumes);
|
gint *volumes);
|
||||||
|
#else
|
||||||
|
gpointer padding1[3];
|
||||||
#endif /* not GST_DISABLE_DEPRECATED */
|
#endif /* not GST_DISABLE_DEPRECATED */
|
||||||
|
|
||||||
void (* set_option) (GstMixer *mixer,
|
void (* set_option) (GstMixer *mixer,
|
||||||
|
@ -135,6 +137,8 @@ struct _GstMixerClass {
|
||||||
void (* option_changed) (GstMixer *mixer,
|
void (* option_changed) (GstMixer *mixer,
|
||||||
GstMixerOptions *opts,
|
GstMixerOptions *opts,
|
||||||
gchar *option);
|
gchar *option);
|
||||||
|
#else
|
||||||
|
gpointer padding2;
|
||||||
#endif /* not GST_DISABLE_DEPRECATED */
|
#endif /* not GST_DISABLE_DEPRECATED */
|
||||||
|
|
||||||
GstMixerFlags (* get_mixer_flags) (GstMixer *mixer);
|
GstMixerFlags (* get_mixer_flags) (GstMixer *mixer);
|
||||||
|
|
Loading…
Reference in a new issue