Commit c3c776bc authored by Max Kellermann's avatar Max Kellermann

mixer_all: convert to C++

parent 9f4b906e
...@@ -52,7 +52,6 @@ mpd_headers = \ ...@@ -52,7 +52,6 @@ mpd_headers = \
src/audio_parser.h \ src/audio_parser.h \
src/output_internal.h \ src/output_internal.h \
src/output_api.h \ src/output_api.h \
src/output_all.h \
src/filter_internal.h \ src/filter_internal.h \
src/filter_config.h \ src/filter_config.h \
src/filter_plugin.h \ src/filter_plugin.h \
...@@ -97,7 +96,6 @@ mpd_headers = \ ...@@ -97,7 +96,6 @@ mpd_headers = \
src/server_socket.h \ src/server_socket.h \
src/log.h \ src/log.h \
src/ls.h \ src/ls.h \
src/mixer_all.h \
src/mixer_api.h \ src/mixer_api.h \
src/mixer_control.h \ src/mixer_control.h \
src/mixer_list.h \ src/mixer_list.h \
...@@ -780,7 +778,7 @@ OUTPUT_LIBS = \ ...@@ -780,7 +778,7 @@ OUTPUT_LIBS = \
OUTPUT_API_SRC = \ OUTPUT_API_SRC = \
src/OutputList.cxx src/OutputList.hxx \ src/OutputList.cxx src/OutputList.hxx \
src/OutputAll.cxx \ src/OutputAll.cxx src/OutputAll.hxx \
src/OutputThread.cxx src/OutputThread.hxx \ src/OutputThread.cxx src/OutputThread.hxx \
src/OutputError.hxx \ src/OutputError.hxx \
src/OutputControl.cxx src/OutputControl.hxx \ src/OutputControl.cxx src/OutputControl.hxx \
...@@ -802,7 +800,7 @@ MIXER_LIBS = \ ...@@ -802,7 +800,7 @@ MIXER_LIBS = \
MIXER_API_SRC = \ MIXER_API_SRC = \
src/mixer_control.c \ src/mixer_control.c \
src/mixer_type.c \ src/mixer_type.c \
src/mixer_all.c \ src/MixerAll.cxx src/MixerAll.hxx \
src/mixer_api.c src/mixer_api.c
libmixer_plugins_a_SOURCES = \ libmixer_plugins_a_SOURCES = \
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include "AllCommands.hxx" #include "AllCommands.hxx"
#include "Partition.hxx" #include "Partition.hxx"
#include "Volume.hxx" #include "Volume.hxx"
#include "OutputAll.hxx"
extern "C" { extern "C" {
#include "daemon.h" #include "daemon.h"
...@@ -45,7 +46,6 @@ extern "C" { ...@@ -45,7 +46,6 @@ extern "C" {
#include "stats.h" #include "stats.h"
#include "sig_handlers.h" #include "sig_handlers.h"
#include "audio_config.h" #include "audio_config.h"
#include "output_all.h"
#include "log.h" #include "log.h"
#include "pcm_resample.h" #include "pcm_resample.h"
#include "replay_gain_config.h" #include "replay_gain_config.h"
......
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -18,12 +18,15 @@ ...@@ -18,12 +18,15 @@
*/ */
#include "config.h" #include "config.h"
#include "mixer_all.h" #include "MixerAll.hxx"
#include "pcm_volume.h"
#include "OutputAll.hxx"
extern "C" {
#include "mixer_control.h" #include "mixer_control.h"
#include "output_all.h"
#include "output_internal.h" #include "output_internal.h"
#include "pcm_volume.h"
#include "mixer_api.h" #include "mixer_api.h"
}
#include <glib.h> #include <glib.h>
......
/* /*
* Copyright (C) 2003-2011 The Music Player Daemon Project * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org * http://www.musicpd.org
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -22,10 +22,8 @@ ...@@ -22,10 +22,8 @@
* Functions which affect the mixers of all audio outputs. * Functions which affect the mixers of all audio outputs.
*/ */
#ifndef MPD_MIXER_ALL_H #ifndef MPD_MIXER_ALL_HXX
#define MPD_MIXER_ALL_H #define MPD_MIXER_ALL_HXX
#include <stdbool.h>
/** /**
* Returns the average volume of all available mixers (range 0..100). * Returns the average volume of all available mixers (range 0..100).
......
...@@ -18,9 +18,9 @@ ...@@ -18,9 +18,9 @@
*/ */
#include "config.h" #include "config.h"
#include "OutputAll.hxx"
extern "C" { extern "C" {
#include "output_all.h"
#include "output_internal.h" #include "output_internal.h"
} }
......
...@@ -26,10 +26,10 @@ ...@@ -26,10 +26,10 @@
#include "config.h" #include "config.h"
#include "OutputCommand.hxx" #include "OutputCommand.hxx"
#include "OutputAll.hxx"
#include "PlayerControl.hxx" #include "PlayerControl.hxx"
extern "C" { extern "C" {
#include "output_all.h"
#include "output_internal.h" #include "output_internal.h"
#include "output_plugin.h" #include "output_plugin.h"
#include "mixer_control.h" #include "mixer_control.h"
......
...@@ -24,13 +24,10 @@ ...@@ -24,13 +24,10 @@
#include "config.h" #include "config.h"
#include "OutputPrint.hxx" #include "OutputPrint.hxx"
#include "OutputAll.hxx"
#include "output_internal.h" #include "output_internal.h"
#include "Client.hxx" #include "Client.hxx"
extern "C" {
#include "output_all.h"
}
void void
printAudioDevices(Client *client) printAudioDevices(Client *client)
{ {
......
...@@ -24,12 +24,9 @@ ...@@ -24,12 +24,9 @@
#include "config.h" #include "config.h"
#include "OutputState.hxx" #include "OutputState.hxx"
#include "OutputAll.hxx"
#include "output_internal.h" #include "output_internal.h"
extern "C" {
#include "output_all.h"
}
#include <glib.h> #include <glib.h>
#include <assert.h> #include <assert.h>
......
...@@ -25,13 +25,13 @@ ...@@ -25,13 +25,13 @@
#include "UpdateGlue.hxx" #include "UpdateGlue.hxx"
#include "ClientInternal.hxx" #include "ClientInternal.hxx"
#include "Volume.hxx" #include "Volume.hxx"
#include "OutputAll.hxx"
#include "protocol/Result.hxx" #include "protocol/Result.hxx"
#include "protocol/ArgParser.hxx" #include "protocol/ArgParser.hxx"
extern "C" { extern "C" {
#include "audio_format.h" #include "audio_format.h"
#include "replay_gain_config.h" #include "replay_gain_config.h"
#include "output_all.h"
} }
#include "PlayerControl.hxx" #include "PlayerControl.hxx"
......
...@@ -29,9 +29,9 @@ ...@@ -29,9 +29,9 @@
#include "mpd_error.h" #include "mpd_error.h"
#include "CrossFade.hxx" #include "CrossFade.hxx"
#include "PlayerControl.hxx" #include "PlayerControl.hxx"
#include "OutputAll.hxx"
extern "C" { extern "C" {
#include "output_all.h"
#include "event_pipe.h" #include "event_pipe.h"
#include "tag.h" #include "tag.h"
#include "idle.h" #include "idle.h"
......
...@@ -19,10 +19,10 @@ ...@@ -19,10 +19,10 @@
#include "config.h" #include "config.h"
#include "Volume.hxx" #include "Volume.hxx"
#include "MixerAll.hxx"
extern "C" { extern "C" {
#include "idle.h" #include "idle.h"
#include "mixer_all.h"
#include "event_pipe.h" #include "event_pipe.h"
} }
......
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