move audioOutput plugins to audioOutput directory
git-svn-id: https://svn.musicpd.org/mpd/trunk@2470 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
ebc4418e01
commit
0adfd8ae76
@ -1,6 +1,11 @@
|
||||
bin_PROGRAMS = mpd
|
||||
SUBDIRS = $(ID3_SUBDIR) $(MAD_SUBDIR) $(MP4FF_SUBDIR)
|
||||
|
||||
mpd_audioOutput = \
|
||||
audioOutput/audioOutput_ao.c \
|
||||
audioOutput/audioOutput_oss.c \
|
||||
audioOutput/audioOutput_shout.c
|
||||
|
||||
mpd_inputPlugins = \
|
||||
inputPlugins/aac_plugin.c \
|
||||
inputPlugins/audiofile_plugin.c \
|
||||
@ -54,12 +59,10 @@ mpd_headers = \
|
||||
|
||||
mpd_SOURCES = \
|
||||
$(mpd_headers) \
|
||||
$(mpd_audioOutput) \
|
||||
$(mpd_inputPlugins) \
|
||||
audio.c \
|
||||
audioOutput.c \
|
||||
audioOutput_ao.c \
|
||||
audioOutput_oss.c \
|
||||
audioOutput_shout.c \
|
||||
buffer2array.c \
|
||||
charConv.c \
|
||||
command.c \
|
||||
|
@ -26,8 +26,6 @@
|
||||
#include "tag.h"
|
||||
#include "conf.h"
|
||||
|
||||
#define AUDIO_AO_DRIVER_DEFAULT "default"
|
||||
|
||||
typedef struct _AudioOutput AudioOutput;
|
||||
|
||||
typedef int (* AudioOutputInitDriverFunc) (AudioOutput * audioOutput,
|
||||
|
@ -16,10 +16,10 @@
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "audioOutput.h"
|
||||
#include "conf.h"
|
||||
#include "log.h"
|
||||
#include "sig_handlers.h"
|
||||
#include "../audioOutput.h"
|
||||
#include "../conf.h"
|
||||
#include "../log.h"
|
||||
#include "../sig_handlers.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
@ -18,16 +18,15 @@
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "../config.h"
|
||||
#include "audioOutput.h"
|
||||
#include "../audioOutput.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef HAVE_OSS
|
||||
|
||||
#include "conf.h"
|
||||
#include "log.h"
|
||||
#include "sig_handlers.h"
|
||||
#include "../conf.h"
|
||||
#include "../log.h"
|
||||
#include "../sig_handlers.h"
|
||||
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
@ -16,18 +16,17 @@
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "../config.h"
|
||||
#include "../audioOutput.h"
|
||||
|
||||
#include "audioOutput.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef HAVE_SHOUT
|
||||
|
||||
#include "conf.h"
|
||||
#include "log.h"
|
||||
#include "sig_handlers.h"
|
||||
#include "pcm_utils.h"
|
||||
#include "../conf.h"
|
||||
#include "../log.h"
|
||||
#include "../sig_handlers.h"
|
||||
#include "../pcm_utils.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <assert.h>
|
||||
#include <signal.h>
|
||||
@ -568,8 +567,6 @@ AudioOutputPlugin shoutPlugin =
|
||||
|
||||
#else
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
AudioOutputPlugin shoutPlugin =
|
||||
{
|
||||
NULL,
|
Loading…
Reference in New Issue
Block a user