diff options
author | Max Kellermann <max@duempel.org> | 2009-07-06 10:01:02 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-06 10:01:02 +0200 |
commit | cd9c0a6b3e0a113d873483d214e1be1c37301b06 (patch) | |
tree | e4d5c342d3b7fedb2c1a257effc9c6b0d94c6051 /Makefile.am | |
parent | c372c3756b24d2ecd879f1f857ccdbf421f3be33 (diff) | |
download | mpd-cd9c0a6b3e0a113d873483d214e1be1c37301b06.tar.gz mpd-cd9c0a6b3e0a113d873483d214e1be1c37301b06.tar.xz mpd-cd9c0a6b3e0a113d873483d214e1be1c37301b06.zip |
filter/convert: new filter which calls pcm_convert() on demand
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 156c1c2da..11397ac3d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -46,6 +46,7 @@ mpd_headers = \ src/filter_plugin.h \ src/filter_registry.h \ src/filter/chain_filter_plugin.h \ + src/filter/convert_filter_plugin.h \ src/filter/volume_filter_plugin.h \ src/buffer2array.h \ src/command.h \ @@ -585,6 +586,7 @@ endif FILTER_SRC = \ src/filter/null_filter_plugin.c \ src/filter/chain_filter_plugin.c \ + src/filter/convert_filter_plugin.c \ src/filter/volume_filter_plugin.c @@ -685,15 +687,22 @@ test_read_tags_SOURCES = test/read_tags.c \ test_run_filter_CPPFLAGS = $(AM_CPPFLAGS) test_run_filter_LDADD = $(MPD_LIBS) \ + $(SAMPLERATE_LIBS) \ $(GLIB_LIBS) test_run_filter_SOURCES = test/run_filter.c \ src/filter_plugin.c \ src/filter_registry.c \ src/conf.c src/buffer2array.c src/utils.c \ - src/pcm_volume.c \ + src/pcm_volume.c src/pcm_convert.c \ + src/pcm_format.c src/pcm_channels.c src/pcm_dither.c \ + src/pcm_resample.c src/pcm_resample_fallback.c \ src/audio_parser.c \ $(FILTER_SRC) +if HAVE_LIBSAMPLERATE +test_run_filter_SOURCES += src/pcm_resample_libsamplerate.c +endif + test_run_encoder_SOURCES = test/run_encoder.c \ src/conf.c src/buffer2array.c \ src/utils.c \ |