diff options
author | Max Kellermann <max@duempel.org> | 2013-02-22 20:29:03 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-02-22 20:29:03 +0100 |
commit | 9ede4c5f3c5b72e8be2ee2e58ffdf36af019b607 (patch) | |
tree | 95a14714738f76ae5b9a07cfcf82b16f6a05aaab /src/mixer | |
parent | 214a526945170308c219ddae0227acea540e97dc (diff) | |
download | mpd-9ede4c5f3c5b72e8be2ee2e58ffdf36af019b607.tar.gz mpd-9ede4c5f3c5b72e8be2ee2e58ffdf36af019b607.tar.xz mpd-9ede4c5f3c5b72e8be2ee2e58ffdf36af019b607.zip |
{output,mixer}/winmm: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/mixer/WinmmMixerPlugin.cxx (renamed from src/mixer/winmm_mixer_plugin.c) | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/mixer/winmm_mixer_plugin.c b/src/mixer/WinmmMixerPlugin.cxx index 99da60cce..e3b7948e3 100644 --- a/src/mixer/winmm_mixer_plugin.c +++ b/src/mixer/WinmmMixerPlugin.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2011 The Music Player Daemon Project + * Copyright (C) 2003-2013 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -20,7 +20,7 @@ #include "config.h" #include "mixer_api.h" #include "output_api.h" -#include "output/winmm_output_plugin.h" +#include "output/WinmmOutputPlugin.hxx" #include <mmsystem.h> @@ -33,7 +33,7 @@ struct winmm_mixer { struct mixer base; - struct winmm_output *output; + WinmmOutput *output; }; static inline GQuark @@ -59,11 +59,11 @@ static struct mixer * winmm_mixer_init(void *ao, G_GNUC_UNUSED const struct config_param *param, G_GNUC_UNUSED GError **error_r) { - assert(ao != NULL); + assert(ao != nullptr); struct winmm_mixer *wm = g_new(struct winmm_mixer, 1); mixer_init(&wm->base, &winmm_mixer_plugin); - wm->output = (struct winmm_output *) ao; + wm->output = (WinmmOutput *) ao; return &wm->base; } @@ -109,8 +109,11 @@ winmm_mixer_set_volume(struct mixer *mixer, unsigned volume, GError **error_r) } const struct mixer_plugin winmm_mixer_plugin = { - .init = winmm_mixer_init, - .finish = winmm_mixer_finish, - .get_volume = winmm_mixer_get_volume, - .set_volume = winmm_mixer_set_volume, + winmm_mixer_init, + winmm_mixer_finish, + nullptr, + nullptr, + winmm_mixer_get_volume, + winmm_mixer_set_volume, + false, }; |