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