diff options
author | Max Kellermann <max@duempel.org> | 2013-08-04 23:48:01 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-04 23:48:01 +0200 |
commit | 85b77b81caa40f8bcd03921380246cb5863d5d21 (patch) | |
tree | cf4bc60a6760c52bcbd642a253b45f3bc5ad8775 /src/mixer | |
parent | 5bf2ec5a74bb1247a8cc84e90577eecbee116c62 (diff) |
*: use gcc.h macros instead of GLib
Diffstat (limited to 'src/mixer')
-rw-r--r-- | src/mixer/AlsaMixerPlugin.cxx | 9 | ||||
-rw-r--r-- | src/mixer/OssMixerPlugin.cxx | 2 | ||||
-rw-r--r-- | src/mixer/PulseMixerPlugin.cxx | 6 | ||||
-rw-r--r-- | src/mixer/WinmmMixerPlugin.cxx | 2 |
4 files changed, 10 insertions, 9 deletions
diff --git a/src/mixer/AlsaMixerPlugin.cxx b/src/mixer/AlsaMixerPlugin.cxx index 31e9997e3..8f7cd608e 100644 --- a/src/mixer/AlsaMixerPlugin.cxx +++ b/src/mixer/AlsaMixerPlugin.cxx @@ -73,6 +73,7 @@ public: /** * The quark used for GError.domain. */ +gcc_const static inline GQuark alsa_mixer_quark(void) { @@ -124,7 +125,7 @@ AlsaMixerMonitor::DispatchSockets() */ static int -alsa_mixer_elem_callback(G_GNUC_UNUSED snd_mixer_elem_t *elem, unsigned mask) +alsa_mixer_elem_callback(gcc_unused snd_mixer_elem_t *elem, unsigned mask) { if (mask & SND_CTL_EVENT_MASK_VALUE) GlobalEvents::Emit(GlobalEvents::MIXER); @@ -149,8 +150,8 @@ AlsaMixer::Configure(const config_param ¶m) } static Mixer * -alsa_mixer_init(G_GNUC_UNUSED void *ao, const config_param ¶m, - G_GNUC_UNUSED GError **error_r) +alsa_mixer_init(gcc_unused void *ao, const config_param ¶m, + gcc_unused GError **error_r) { AlsaMixer *am = new AlsaMixer(); am->Configure(param); @@ -169,7 +170,7 @@ alsa_mixer_finish(Mixer *data) snd_config_update_free_global(); } -G_GNUC_PURE +gcc_pure static snd_mixer_elem_t * alsa_mixer_lookup_elem(snd_mixer_t *handle, const char *name, unsigned idx) { diff --git a/src/mixer/OssMixerPlugin.cxx b/src/mixer/OssMixerPlugin.cxx index bbb5b6c88..d8af6dff0 100644 --- a/src/mixer/OssMixerPlugin.cxx +++ b/src/mixer/OssMixerPlugin.cxx @@ -104,7 +104,7 @@ OssMixer::Configure(const config_param ¶m, GError **error_r) } static Mixer * -oss_mixer_init(G_GNUC_UNUSED void *ao, const config_param ¶m, +oss_mixer_init(gcc_unused void *ao, const config_param ¶m, GError **error_r) { OssMixer *om = new OssMixer(); diff --git a/src/mixer/PulseMixerPlugin.cxx b/src/mixer/PulseMixerPlugin.cxx index 9cfd2dcf8..1c99b2469 100644 --- a/src/mixer/PulseMixerPlugin.cxx +++ b/src/mixer/PulseMixerPlugin.cxx @@ -77,7 +77,7 @@ pulse_mixer_offline(PulseMixer *pm) * value. */ static void -pulse_mixer_volume_cb(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i, +pulse_mixer_volume_cb(gcc_unused pa_context *context, const pa_sink_input_info *i, int eol, void *userdata) { PulseMixer *pm = (PulseMixer *)userdata; @@ -120,7 +120,7 @@ pulse_mixer_update(PulseMixer *pm, } void -pulse_mixer_on_connect(G_GNUC_UNUSED PulseMixer *pm, +pulse_mixer_on_connect(gcc_unused PulseMixer *pm, struct pa_context *context) { pa_operation *o; @@ -182,7 +182,7 @@ pulse_mixer_finish(Mixer *data) } static int -pulse_mixer_get_volume(Mixer *mixer, G_GNUC_UNUSED GError **error_r) +pulse_mixer_get_volume(Mixer *mixer, gcc_unused GError **error_r) { PulseMixer *pm = (PulseMixer *) mixer; int ret; diff --git a/src/mixer/WinmmMixerPlugin.cxx b/src/mixer/WinmmMixerPlugin.cxx index 139cb1399..cbfb8f6cb 100644 --- a/src/mixer/WinmmMixerPlugin.cxx +++ b/src/mixer/WinmmMixerPlugin.cxx @@ -61,7 +61,7 @@ winmm_volume_encode(int volume) static Mixer * winmm_mixer_init(void *ao, gcc_unused const config_param ¶m, - G_GNUC_UNUSED GError **error_r) + gcc_unused GError **error_r) { assert(ao != nullptr); |