Commit 097e200a authored by Max Kellermann's avatar Max Kellermann

mixer/{oss,alsa}: renamed the mixer source files

parent bd28caed
......@@ -585,7 +585,7 @@ MIXER_SRC = \
if HAVE_ALSA
OUTPUT_SRC += src/output/alsa_plugin.c
MIXER_SRC += src/mixer/alsa_mixer.c
MIXER_SRC += src/mixer/alsa_mixer_plugin.c
endif
if HAVE_AO
......@@ -610,7 +610,7 @@ endif
if HAVE_OSS
OUTPUT_SRC += src/output/oss_plugin.c
MIXER_SRC += src/mixer/oss_mixer.c
MIXER_SRC += src/mixer/oss_mixer_plugin.c
endif
if HAVE_OPENAL
......
......@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "../output_api.h"
#include "../mixer_api.h"
#include "mixer_api.h"
#include "output_api.h"
#include <glib.h>
#include <alsa/asoundlib.h>
......@@ -47,7 +47,7 @@ alsa_mixer_init(const struct config_param *param)
{
struct alsa_mixer *am = g_new(struct alsa_mixer, 1);
mixer_init(&am->base, &alsa_mixer);
mixer_init(&am->base, &alsa_mixer_plugin);
am->device = config_get_block_string(param, "mixer_device",
VOLUME_MIXER_ALSA_DEFAULT);
......@@ -211,7 +211,7 @@ alsa_mixer_set_volume(struct mixer *mixer, unsigned volume)
return true;
}
const struct mixer_plugin alsa_mixer = {
const struct mixer_plugin alsa_mixer_plugin = {
.init = alsa_mixer_init,
.finish = alsa_mixer_finish,
.open = alsa_mixer_open,
......
......@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "../output_api.h"
#include "../mixer_api.h"
#include "mixer_api.h"
#include "output_api.h"
#include <glib.h>
......@@ -69,7 +69,7 @@ oss_mixer_init(const struct config_param *param)
{
struct oss_mixer *om = g_new(struct oss_mixer, 1);
mixer_init(&om->base, &oss_mixer);
mixer_init(&om->base, &oss_mixer_plugin);
om->device = config_get_block_string(param, "mixer_device",
VOLUME_MIXER_OSS_DEFAULT);
......@@ -184,7 +184,7 @@ oss_mixer_set_volume(struct mixer *mixer, unsigned volume)
return true;
}
const struct mixer_plugin oss_mixer = {
const struct mixer_plugin oss_mixer_plugin = {
.init = oss_mixer_init,
.finish = oss_mixer_finish,
.open = oss_mixer_open,
......
......@@ -26,8 +26,8 @@
#define MPD_MIXER_LIST_H
extern const struct mixer_plugin software_mixer_plugin;
extern const struct mixer_plugin alsa_mixer;
extern const struct mixer_plugin oss_mixer;
extern const struct mixer_plugin alsa_mixer_plugin;
extern const struct mixer_plugin oss_mixer_plugin;
extern const struct mixer_plugin pulse_mixer_plugin;
#endif
......@@ -544,5 +544,6 @@ const struct audio_output_plugin alsaPlugin = {
.play = alsa_play,
.cancel = alsa_cancel,
.close = alsa_close,
.mixer_plugin = &alsa_mixer,
.mixer_plugin = &alsa_mixer_plugin,
};
......@@ -601,5 +601,6 @@ const struct audio_output_plugin oss_output_plugin = {
.close = oss_output_close,
.play = oss_output_play,
.cancel = oss_output_cancel,
.mixer_plugin = &oss_mixer,
.mixer_plugin = &oss_mixer_plugin,
};
......@@ -57,7 +57,7 @@ int main(int argc, G_GNUC_UNUSED char **argv)
g_thread_init(NULL);
mixer = mixer_new(&alsa_mixer, NULL);
mixer = mixer_new(&alsa_mixer_plugin, NULL);
if (mixer == NULL) {
g_printerr("mixer_new() failed\n");
return 2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment