diff options
author | Max Kellermann <max@duempel.org> | 2009-07-07 08:58:51 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-07 08:58:51 +0200 |
commit | 1eebbc746f715e32f165ed62fdc57447a5903b21 (patch) | |
tree | 95a70858bac7aea6bf6bd59c26a67144abf2f6c6 /Makefile.am | |
parent | adb2f66cedcac56eaaaa36e8026b497c96c522e6 (diff) | |
download | mpd-1eebbc746f715e32f165ed62fdc57447a5903b21.tar.gz mpd-1eebbc746f715e32f165ed62fdc57447a5903b21.tar.xz mpd-1eebbc746f715e32f165ed62fdc57447a5903b21.zip |
decoder/sndfile: new decoder plugin based on libsndfile
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 19658d77c..37d5b3a62 100644 --- a/Makefile.am +++ b/Makefile.am @@ -325,6 +325,7 @@ endif DECODER_CFLAGS = \ $(VORBIS_CFLAGS) $(TREMOR_CFLAGS) \ $(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) \ + $(SNDFILE_CFLAGS) \ $(AUDIOFILE_CFLAGS) \ $(LIBMIKMOD_CFLAGS) \ $(MODPLUG_CFLAGS) \ @@ -338,6 +339,7 @@ DECODER_CFLAGS = \ DECODER_LIBS = \ $(VORBIS_LIBS) $(TREMOR_LIBS) \ $(FLAC_LIBS) \ + $(SNDFILE_LIBS) \ $(AUDIOFILE_LIBS) $(LIBMIKMOD_LIBS) \ $(MODPLUG_LIBS) \ $(SIDPLAY_LIBS) \ @@ -420,6 +422,10 @@ if HAVE_FFMPEG DECODER_SRC += src/decoder/ffmpeg_plugin.c endif +if ENABLE_SNDFILE +DECODER_SRC += src/decoder/sndfile_decoder_plugin.c +endif + # encoder plugins ENCODER_CFLAGS = \ |