Commit ece8c134 authored by Max Kellermann's avatar Max Kellermann

renamed src/audioOutputs/ to src/output/

Again, no CamelCase in the directory name.
parent e11355f4
bin_PROGRAMS = mpd bin_PROGRAMS = mpd
mpd_audioOutputs = \ mpd_output = \
audioOutputs/audioOutput_shout.c \ output/shout_plugin.c \
audioOutputs/audioOutput_shout_ogg.c \ output/shout_ogg.c \
audioOutputs/audioOutput_shout_mp3.c \ output/shout_mp3.c \
audioOutputs/audioOutput_null.c \ output/null_plugin.c \
audioOutputs/audioOutput_fifo.c \ output/fifo_plugin.c \
audioOutputs/audioOutput_alsa.c \ output/alsa_plugin.c \
audioOutputs/audioOutput_ao.c \ output/ao_plugin.c \
audioOutputs/audioOutput_oss.c \ output/oss_plugin.c \
audioOutputs/audioOutput_osx.c \ output/osx_plugin.c \
audioOutputs/audioOutput_pulse.c \ output/pulse_plugin.c \
audioOutputs/audioOutput_mvp.c \ output/mvp_plugin.c \
audioOutputs/audioOutput_jack.c output/jack_plugin.c
mpd_headers = \ mpd_headers = \
notify.h \ notify.h \
...@@ -25,7 +25,7 @@ mpd_headers = \ ...@@ -25,7 +25,7 @@ mpd_headers = \
output_list.h \ output_list.h \
output_thread.h \ output_thread.h \
output_control.h \ output_control.h \
audioOutputs/audioOutput_shout.h \ output/shout_plugin.h \
buffer2array.h \ buffer2array.h \
command.h \ command.h \
idle.h \ idle.h \
...@@ -104,7 +104,7 @@ mpd_headers = \ ...@@ -104,7 +104,7 @@ mpd_headers = \
mpd_SOURCES = \ mpd_SOURCES = \
$(mpd_headers) \ $(mpd_headers) \
$(mpd_audioOutputs) \ $(mpd_output) \
notify.c \ notify.c \
audio.c \ audio.c \
audioOutput.c \ audioOutput.c \
......
...@@ -16,12 +16,11 @@ ...@@ -16,12 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "../output_api.h" #include "shout_plugin.h"
#ifdef HAVE_SHOUT_MP3 #ifdef HAVE_SHOUT_MP3
#include "../utils.h" #include "../utils.h"
#include "audioOutput_shout.h"
#include <lame/lame.h> #include <lame/lame.h>
struct lame_data { struct lame_data {
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "audioOutput_shout.h" #include "shout_plugin.h"
#ifdef HAVE_SHOUT_OGG #ifdef HAVE_SHOUT_OGG
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "audioOutput_shout.h" #include "shout_plugin.h"
#ifdef HAVE_SHOUT #ifdef HAVE_SHOUT
......
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